function ChangePage_Prod(list, home) {

	if(list.selectedIndex!=0) {
		loc=home + "/open_page.jsp?product=" + list.options[list.selectedIndex].value
		document.location=loc;
	}
}

function Open_Product_Page(product, home) {

	loc=home + "/open_page.jsp?product=" + product;
	document.location=loc;
}
