function Validator(theForm) {
	if (theForm.name.value== "") {
	    alert("Please enter your name");
    	theForm.name.focus();
    return (false);
	}
	if (theForm.address1.value== "") {
	    alert("Please enter your address");
    	theForm.address1.focus();
    return (false);
	}
	if (theForm.telephone.value== "") {
	    alert("Please enter your telephone number");
    	theForm.telephone.focus();
    return (false);
	}
	if (theForm.postcode.value== "") {
	    alert("Please enter your postcode");
    	theForm.postcode.focus();
    return (false);
	}
	if (theForm.emailadd.value.indexOf("@")<=0){
		alert("Please enter your e-mail address");
		theForm.emailadd.focus();
	return (false);
	}
	
	
	if (theForm.make.value== "") {
	    alert("Please enter your vehicle make");
    	theForm.make.focus();
    return (false);
	}
	if (theForm.model.value== "") {
	    alert("Please enter your vehicle model");
    	theForm.model.focus();
    return (false);
	}
	if (theForm.year.value== "") {
	    alert("Please enter year of manufacture");
    	theForm.year.focus();
    return (false);
	}
	if (theForm.registration.value== "") {
	    alert("Please enter your registration number");
    	theForm.registration.focus();
    return (false);
	}
	if (theForm.idnumber.value== "") {
	    alert("Please enter your vehicle identity number");
    	theForm.idnumber.focus();
    return (false);
	}
	if (theForm.colour.value== "") {
	    alert("Please enter your vehicle colour");
    	theForm.colour.focus();
    return (false);
	}
	if (theForm.vehiclevalue.value== "") {
	    alert("Please enter your vehicle value");
    	theForm.vehiclevalue.focus();
    return (false);
	}
	if (theForm.vehicletobe.value== "none") {
	    alert("Is your vehicle to be delivered or collected?");
    	theForm.vehicletobe.focus();
    return (false);
	}
	if (theForm.collectdate.value== "") {
	    alert("Please enter your collection date");
    	theForm.collectdate.focus();
    return (false);
	}	
	
	
	if (theForm.destname.value== "") {
	    alert("Please enter your destination name");
    	theForm.destname.focus();
    return (false);
	}
	if (theForm.destadd1.value== "") {
	    alert("Please enter your destination address");
    	theForm.destadd1.focus();
    return (false);
	}
	if (theForm.desttel.value== "") {
	    alert("Please enter your destination telephone number");
    	theForm.desttel.focus();
    return (false);
	}
	if (theForm.destemail.value.indexOf("@")<=0){
	    alert("Please enter your destination e-mail address");
    	theForm.destemail.focus();
    return (false);
	}
	if (theForm.destport.value== "") {
	    alert("Please enter your destination port");
    	theForm.destport.focus();
    return (false);
	}
	if (theForm.insurance.value== "none") {
	    alert("Do you require marine insurance?");
    	theForm.insurance.focus();
    return (false);
	}
return (true);
}




