<!--
function ShowHide(val){
 if (val=="choose"){
 document.getElementById('towels').style.display='none'
 document.getElementById('moistwipes').style.display='none'
 document.getElementById('napkins').style.display='none'
 return
 }

 if (val=='scotttowels'){
 document.getElementById('towels').style.display='block'
 document.getElementById('tissue').style.display='none'
 } else if (val=='scotttissue'){
 document.getElementById('towels').style.display='none'
 document.getElementById('tissue').style.display='block'
 } else {
 document.getElementById('towels').style.display='none'
 document.getElementById('tissue').style.display='none'
 }
}

function validateForm()
{
	vPass=true;
	if(vPass==true){
//		if(document.frmStoreLocator.brand.selectedIndex==0) {
//			alert('Please select a brand in number 1');
//			document.frmStoreLocator.brand.focus();
//			vPass=false;
//		}
//		else if(document.frmStoreLocator.brand.selectedIndex > 0 && document.frmStoreLocator.p1.selectedIndex==0 && document.frmStoreLocator.p2.selectedIndex==0){
		if(document.frmStoreLocator.productid.selectedIndex==0) {
			alert('Please select a product in number 1');
			document.frmStoreLocator.productid.focus();
//			if (document.frmStoreLocator.brand.selectedIndex > 0) {
//				document.frmStoreLocator.p1.focus();
//			} else {
//				 document.frmStoreLocator.p2.focus(); 
//			}
			vPass=false;
		}
		else if(document.frmStoreLocator.searchradius.selectedIndex==0) {
			alert('Please select a search radius in number 2');
			document.frmStoreLocator.searchradius.focus();
			vPass=false;
		}
		else if(document.frmStoreLocator.zip.value=='') {
			alert('Please enter a zip code in number 3');
			document.frmStoreLocator.zip.focus();
			vPass=false;
		}
	}
	if(vPass==true){
		document.frmStoreLocator.submit();
	}
}
//-->