<!--function isEmailAddr(email){  var result = false  var theStr = new String(email)  var index = theStr.indexOf("@");  if (index > 0)  {    var pindex = theStr.indexOf(".",index);    if ((pindex > index+1) && (theStr.length > pindex+1))	result = true;  }  return result;}function FormValidator(theForm){  if (theForm.email.value == "")  {    alert("Please enter a value for the \"eMail Address\" field.");    theForm.email.focus();    return (false);  }  if (theForm.telephone.value == "")  {    alert("Please enter a value for the \"Telephone Number\" field.");    theForm.telephone.focus();    return (false);  }  if (theForm.realname.value == "")  {    alert("Please enter a value for the \"Contact Name\" field.");    theForm.realname.focus();    return (false);  }  if (!isEmailAddr(theForm.email.value))  {    alert("Please enter a complete eMail Address in the form: yourname@yourdomain.com");    theForm.email.focus();    return (false);  }     if (theForm.email.value.length < 3)  {    alert("Please enter at least 3 characters in the \"eMail Address\" field.");    theForm.email.focus();    return (false);  }  return (true);}// -->