function ValidateForm1(theForm) 
{ 
var strValue = theForm.Email1.value; 
var strFilter = /^([0-9a-z]([-.\w]*[0-9a-z])*@(([0-9a-z])+([-\w]*[0-9a-z])*\.)+[a-z]{2,6})$/i; 
if (!strFilter.test(strValue)) 
{ 
   alert("You must enter at least one referral email."); 
   return false; 
} 
if (theForm.Email1.value == "") 
{ 
   alert("Please enter a value for the \"Email 1\" field."); 
   theForm.Email1.focus(); 
   return false; 
} 
var strFilter = /^[A-Za-z????????¨¤¨¢??????¨¨¨¦¨º?¨¬¨ª??D?¨°¨®????¨´¨²?¨¹YT?¨¤¨¢a?????¨¨¨¦¨º?¨¬¨ª??e?¨°¨®????¨´¨²?¨¹yt? \t\r\n\f ,']*$/; 
var chkVal = theForm.Editbox4.value; 
if (!strFilter.test(chkVal)) 
{ 
   alert("Only letters, \*.'\* characters and whitespace allowed for \"Your Name\""); 
   theForm.Editbox4.focus(); 
   return false; 
} 
if (theForm.Editbox4.value == "Your Name") 
{ 
   alert("Please enter your full name into the \"Your Name\" field."); 
   theForm.Editbox4.focus(); 
   return false; 
}
var strValue = theForm.Email.value; 
var strFilter = /^([0-9a-z]([-.\w]*[0-9a-z])*@(([0-9a-z])+([-\w]*[0-9a-z])*\.)+[a-z]{2,6})$/i; 
if (!strFilter.test(strValue)) 
{ 
   alert("Your own email is missing or incomplete."); 
   return false; 
} 
if (theForm.Email2.value == "") 
{ 
   alert("Please enter a value for the \"Your Email\" field."); 
   theForm.Emai2.focus(); 
   return false; 
} 
return true; 
}