// ' check to see if the email (requested_email_address) field has a valid email address in it. if it doesn't
// ' do not allow the form to be submitted. if for some reason the javascript does
// ' not prevent the user from submitting the form, then an ASP version of validEmail 
// ' will also check and send them back to the form if it is invalid
function checkEmailPasswordForm(){
	$obj = document.requestAccountInfo.requested_email_address;
	if(!$obj.value){alert("Please enter an e-mail address.");return false;}
	if(!validEmail($obj.value)){alert("The e-mail address supplied does not appear to be valid.\nPlease fix and resend your request.");return false;}
	return true;
}
