// JavaScript Document

function Validate() {
 
	if (theForm.email.value.length < 5) {
		alert("Sorry, there seems to be a problem with your e-mail Address!\n\nPlease re-enter your e-mail address.");
		theForm.email.focus();
	return (false);
	}

	return (true);

}


