function Winaonchange(){

  urlarray = new Array();

  urlarray[0] = "usproducts.html";

  urlarray[1] = "usclinicalchemistry.html";
  
  urlarray[2] = "usdiabetescare.html";


 //  alert("from here...");

	myproducttype = document.getElementById("ProductType");

//	alert("gavin test");

	//alert(myproducttype.options[myproducttype.selectedIndex].value);

    myproducttype = myproducttype.options[myproducttype.selectedIndex].value;

//	alert("producttype value:" + myproducttype);

	i = parseInt(myproducttype);

//	alert("url value:" + urlarray[i]);

	location.href = urlarray[i];

}