if(navigator.appName=="Netscape"){
	document.write("<link rel='stylesheet' href='template.css' type='text/css' />");
}else if(navigator.appName=="Microsoft Internet Explorer"){
	document.write("<link rel='stylesheet' href='template-ie.css' type='text/css' />");
}

function thisSubmit(theForm){
	document.form2.action=theForm;
	document.form2.submit();
}

function checkValidInput(theDropDown){
	if(theDropDown.options[theDropDown.options.selectedIndex].value == "select one"){
		alert("You are not allowed to continue. Please specify product color.");
		return false;
	}
}
