function validateForm(thisForm) {		if(thisForm.title.value!="" && thisForm.firstname.value!="" && thisForm.lastname.value!="" && thisForm.email.value!="" && thisForm.houseNo.value!="" && thisForm.postcode.value!="" && thisForm.address1.value!="" && thisForm.town.value!="" && thisForm.county.value!="") {		thisForm.submit();	}	else {		var errorString="Please fill in all necessary fields:\n";		if(thisForm.title.value=="") {			errorString+="\nTitle.";		}		if(thisForm.firstname.value=="") {			errorString+="\nFirst Name.";		}		if(thisForm.lastname.value=="") {			errorString+="\nLast Name.";		}		if(thisForm.email.value=="") {			errorString+="\nEmail.";		}		if(thisForm.houseNo.value=="") {			errorString+="\nHouse number.";		}		if(thisForm.postcode.value=="") {			errorString+="\nPostcode.";		}		if(thisForm.address1.value=="") {			errorString+="\nAddress 1.";	            		}		if(thisForm.town.value=="") {			errorString+="\nTown.";		}		if(thisForm.county.value=="") {			errorString+="\nCounty.";		}		alert(errorString);	}}