

function validate( )
{
	var email = document.form.Email.value;
		
		if ( email.indexOf("@") == "-1" || email == "" )
        {
                alert ( "Please enter a valid email in the 'email' box" );
				document.form.Email.focus();
                return false;
        } 
		
    	
        return true;
}