<!--
function FormValidation(theForm)
{
	
 if (theForm.dates.value == "")
  {
    alert("Please enter a value for the \"Proposed dates of visit\" field.");
    theForm.state.focus();
    return (false);
  }


 if (theForm.reason.value == "")
  {
    alert("Please enter a value for the \"Reason for visit\" field.");
    theForm.city.focus();
    return (false);
  }
  
  if (theForm.realname.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.realname.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.address.focus();
    return (false);
  }

 
} /*end of function*/			  
//-->

