<!--

function lHcheckForm(){

	strEmail = document.lhclub.regmail.value	
	if (isEmpty(strEmail)|| (isSpace(strEmail))) {
		alert("Please enter your Email Address");
		document.lhclub.regmail.focus();
		document.lhclub.regmail.value=""
		return false;
	 }
	 
	
	if (!isEmail(strEmail)) {
		alert("Please enter a valid entry for the Email Address");
		document.lhclub.regmail.focus();
		return false;
	}
	
}
-->

