function quickLinks(obj) 
{
	//Sends user to selected page 
	var indx = obj.selectedIndex;
	var val = obj.options[indx].value;
	if (indx!=0)
	newwindow=window.open(val,'product','toolbar=yes,location=yes,menubar=yes,scrollbars=yes,resizable=yes,height=520,width=780');
	//window.location = val;
}