function validateEList()
{					

		with(document.elist)

			{

			if(Name.value=="")

				{

				alert("Please Enter Your Full Name.");

				return false;

				}


			

			else	
			  
               		 return true;
            

}
}
function validate_email() {
if (document.getEmail.email.value=="")
					{alert("You must include your Email Address!");
								return false;}
								
    if(-1 == document.getEmail.email.value.indexOf("@")) { 
       document.getEmail.email.focus(); 
       alert("Your email must have a '@'."); 
       return false; 
       }
    if(-1 != document.getEmail.email.value.indexOf(",")) { 
       document.getEmail.email.focus(); 
       alert("Your email must not have a ',' in it"); 
       return false; 
       }
    if(-1 != document.getEmail.email.value.indexOf("#")) { 
       document.getEmail.email.focus(); 
       alert("Your email must not have an '#' in it." ); 
       return false; 
       }
    if(-1 != document.getEmail.email.value.indexOf("!")) { 
       document.getEmail.email.focus(); 
       alert("Your email must not have a '!' in it." ); 
       return false; 
       }
    if(-1 != document.getEmail.email.value.indexOf(" ")) { 
       document.getEmail.email.focus(); 
       alert("Your email must not have a space in it." ); 
       return false; 
       }
    if(document.getEmail.email.value.length == (document.getEmail.email.value.indexOf("@")+1) ) {
       document.getEmail.email.focus();
       alert("Your email must have a domain name after the '@'.");
       return false;
       }

    if(document.getEmail.email.value.length == 0) { 
      document.getEmail.email.focus(); 
      alert("Please enter your email."); 
      return false; 
      }
	  window.close();
    return true;
  }		
  	
function newWindow(url) {link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=500,height=500,left=80,top=0"); } 	


function CloseMe() {

        parent.window.close();

        }