 function checkMissing(theForm)
        {
                var missing = false;
                var message = "";
                

  
                if(theForm.Email.value.length<8){
                        message += "  Please - a real email address is all it takes - we still love you \n";
                        missing = true;
                }

  if(theForm.Email.value=="aol@aol.com"){
                        message += "  Please aol@aol.com is not  a real email address - Get Real Thanks \n";
                        missing = true;
                }

  if(theForm.Email.value=="a@aol.com"){
                        message += "   Please !!!   a@aol.com is not  a real email address - Thanks \n";
                        missing = true;
                }

  if(theForm.Email.value=="aa@aol.com"){
                        message += "   Please !!!! aa@aol.com is not  a real email address - you know that  \n";
                        missing = true;
                }


  if(theForm.Email.value=="a@a.com"){
                        message += "  Wizeguy !!!! a@a.com is not  a real email address - get real \n";
                        missing = true;
                }
              
                if(missing) {
                        message = "There seems to be some junk here:\n" + message;
                        alert(message);
                        return(false);
                }

               


                if (theForm.Email.value.length>0) {
                        if(theForm.Email.value.lastIndexOf("@") <1 || theForm.Email.value.lastIndexOf("@") == (theForm.Email.value.length-1) || theForm.Email.value.lastIndexOf(".") <1 || theForm.Email.value.lastIndexOf(".") == (theForm.Email.value.length-1) ||  theForm.Email.value.lastIndexOf(".") <= theForm.Email.value.lastIndexOf("@")) {
                                message = "Email is not of the form username@yourdomain.com";
                                alert(message);
                                return(false);
var ea = "";
                        }
                }
                return(true);
        }








