function Form_Validator(theForm)
{
  if (theForm.dname.value == "")
  {
    alert("Please enter your full name.");
    theForm.dname.focus();
    return (false);
   }
  if (theForm.email.value == "")
  {
    alert("Please enter your email address.");
    theForm.email.focus();
    return (false);
  }  
   if (theForm.emailrepeat.value == "")
  {
    alert("Please re-enter your Email address");
    theForm.emailrepeat.focus();
    return (false);
  }    
		
	return (true);
}