<!--
function validate_Form(moreinfo)
{
if (document.moreinfo.email.value == "")
  {
    alert("Please enter your email address in box located to the right. This will not sign you up for anything.");
    document.moreinfo.email.focus();
    return false;
  }
if (document.moreinfo.email.value != "")
  {
	var CRETURN = "\n";
	emailmessage= moreinfo.email.value.toLowerCase();
	if ((emailmessage.indexOf("@")<1) || (emailmessage.indexOf(".")<1))
	  {
       	alert("This email address appears to be invalid." + CRETURN + "Please check the prefix and '@' sign.");      
    	document.moreinfo.email.focus();
       	return false;
      } 
  }
  
 if (document.moreinfo.phone.value == "")
  {
    alert("Please enter your phone number in box located to the right. This will not sign you up for anything.");
    document.moreinfo.phone.focus();
    return false;
  }

else  return true;
}

	function clearsf(ticker) {
		if (ticker.value == "Enter Friends Email")
			ticker.value = ""	
	}

//-->
