function validate(){	if (document.theform.YourTitle.value == ""){		document.theform.YourTitle.focus();		document.theform.YourTitle.select();		alert("Please enter your Title.");		return false;	}	if (document.theform.Forename.value == ""){		document.theform.Forename.focus();		document.theform.Forename.select();		alert("Please enter your Forename.");		return false;	}	if (document.theform.Surname.value == ""){		document.theform.Surname.focus();		document.theform.Surname.select();		alert("Please enter your Surname.");		return false;	}		if (document.theform.Email.value == ""){		document.theform.Email.focus();		document.theform.Email.select();		alert("Please enter your Email.");		return false;	}		if (document.theform.Organisation.value == ""){		document.theform.Organisation.focus();		document.theform.Organisation.select();		alert("Please enter your Organisation.");		return false;	}		if (document.theform.Telephone.value == ""){		document.theform.Telephone.focus();		document.theform.Telephone.select();		alert("Please enter your Telephone.");		return false;	}	//  This is to validate checkboxes - not needed	/*  if (document.theform.webCheck.checked == false &&        document.theform.reccCheck.checked == false &&        document.theform.salesCheck.checked == false &&        document.theform.directCheck.checked == false &&        document.theform.otherCheck.checked == false)         {                alert ('You didn\'t choose any of the checkboxes!');                return false;        }*/        			return true;}
