<!-- Validate the information entered in list_car.php before submitting the form. -->             
         function validate(searchForm) {
         	
         	if(document.searchForm.Name.value == ""){
	       		alert("Please enter your full name.")
	       		document.searchForm.Name.focus();
			return false;
		}
		
         	if(document.searchForm.Phone.value == ""){
	       		alert("Please enter your phone number.")
	       		document.searchForm.Phone.focus();
	       	
			return false;
		}

         	if(document.searchForm.Email.value == ""){
	       		alert("Please enter your email so that we can get in contact with you.")
	       		document.searchForm.Email.focus();
	       		
			return false;
		}
         	if(document.searchForm.Company.value == ""){
	       		alert("Please tell us if your company name.")
	       		document.searchForm.Company.focus();
	       		
			return false;
		}

		if(document.searchForm.Address.value == ""){
	       		alert("Please tell us the address of your company.")
	       		document.searchForm.Address.focus();
	       		
			return false;
		}
		if(document.searchForm.City.value == ""){
	       		alert("Please tell us the city of your company.")
	       		document.searchForm.City.focus();
	       		
			return false;
		}
		if(document.searchForm.Province.value == ""){
	       		alert("Please enter the province of your company.")
	       		document.searchForm.Province.focus();
	       		
			return false;
		}
		if(document.searchForm.Postal_code.value == ""){
	       		alert("Please tell us the postal code of your company.")
	       		document.searchForm.Postal_code.focus();
	       		
			return false;
		}
	
	
		return true;
	
	}//end validate() 
	    
