// JavaScript Document
function searchProduct(){
	var product = document.getElementById('product').options[document.getElementById('product').selectedIndex].value;
	window.location = product;
}
function findNews(){
	var URLRequest = document.getElementById('URL').value;
	var month = document.getElementById('month').options[document.getElementById('month').selectedIndex].value;
	var year = document.getElementById('year').options[document.getElementById('year').selectedIndex].value;
	URLRequest += '&month=' + month + '&year=' + year;
	if((month != '') && (year != '')){
		window.location = URLRequest;
	}
}
