<!--

function validatefriend(frm)
{
     
     if (!checkString(frm.yourname, "Your First Name", false)){
     return false;}
     
     if (!checkString(frm.yourlastname, "Your Last Name", false)){
     return false;}                              
     
     if (!checkEmail(frm.youremail, "Your Email Address", false)){
     return false;}
     
 
     if (!checkString(frm.friendname, "Friends First Name", true)){
     return false;}
     
     if (!checkString(frm.friendlastname, "Friends Last Name", true)){
     return false;}                              
     
     if (!checkEmail(frm.friendemail, "Friends Email Address", true)){
     return false;}
     
	 
	frm.submit();
    
   }

//-->