function LocatePopup() {
	if (document.inputForm.searchqst.value == "")
	{
		document.inputForm.searchqst.value = "0"; 
	}

	if ((document.inputForm.searchqst.value == "1") && (document.inputForm.searchqbp.value == ""))
  	{
   		alert("Please select a Bosch Product.");
    	document.inputForm.fc.focus();
    	document.inputForm.fc.select(); 	
  	}
  	
	if (document.inputForm.ZIP.value == "")
  	{
   		alert("Please enter a Zip Code.");
    	document.inputForm.ZIP.focus();
    	document.inputForm.ZIP.select(); 	
  	}
  	else  	
	{
		Zip = "";
		ST  = "";
		BP = "";
		
		//Commented out by walorski on 10/08/06 to test locally the rendering order of the elements coming back
		var URL = "http://66.77.255.77/LocateDealer.aspx?Zip=" + document.inputForm.ZIP.value + "&ST=" + document.inputForm.searchqst.value + "&BP=" + document.inputForm.searchqbp.value;
		//var URL = "http://localhost/locator/LocateDealer.aspx?Zip=" + document.inputForm.ZIP.value + "&ST=" + document.inputForm.searchqst.value + "&BP=" + document.inputForm.searchqbp.value;
       //window.open(URL,"_blank", "width=630, scrollbars=1");
        window.open(URL,"_blank", "width=630, location=1, menubar=1, scrollbars=1, status=1, titlebar=1, toolbar=1, resizable=1");

   }      
}