<!-- //hide the script
function form_validator(theForm)
{

 	if(theForm.custfore.value == "") {
 		 alert("Please enter your First Name.");
 		 theForm.custfore.focus();
 		 return(false);
 	}
 	
 	if(theForm.custsur.value == "") {
 		 alert("Please enter your Surname.");
 		 theForm.custsur.focus();
 		 return(false);
 	}
 	
 	if(theForm.address.value == "") {
 		 alert("Please enter your Address.");
 		 theForm.address.focus();
 		 return(false);
 	}
 	
 	if(theForm.town.value == "") {
 		 alert("Please enter your Town / City.");
 		 theForm.town.focus();
 		 return(false);
 	}
 	
 	if(theForm.county.value == "") {
 		 alert("Please enter your County.");
 		 theForm.county.focus();
 		 return(false);
 	}
 	
 	if(theForm.postcode.value == "") {
 		 alert("Please enter your Post Code.");
 		 theForm.postcode.focus();
 		 return(false);
 	}
 	
 	if(theForm.country.value == "") {
 		 alert("Please enter your Country.");
 		 theForm.country.focus();
 		 return(false);
 	}
 	
 	if(theForm.telareacode.value == "") {
 		 alert("Please enter your Area Code.");
 		 theForm.telareacode.focus();
 		 return(false);
 	}
 	
 	if(theForm.telphone.value == "") {
 		 alert("Please enter your Telephone Number.");
 		 theForm.telphone.focus();
 		 return(false);
 	}
 	
 	if(theForm.calltime.value == "") {
 		 alert("Please enter a Time.");
 		 theForm.calltime.focus();
 		 return(false);
 	}
	
	
	return (true);
}
// end script hiding -->