// JavaScript Document
function gotoUrl(frm,index)
{
	
		 var url;
         var newWindowFlag;
		 var arrays;
		 var selectedItemIndex;
		 var selectedValue;
		 var ctrl = "product"+index;	
  		 selectedItemIndex = frm[ctrl].selectedIndex;
		 selectedValue = frm[ctrl].options[selectedItemIndex].value;
 		 url = selectedValue;
		 window.location.href = url;

}