		//<![CDATA[
			function valForm(oForm){
			if(!oForm.strName.value){alert('Please enter your name');oForm.strName.focus();return false;}
			if(!oForm.strEmail.value){alert('Please enter your email');oForm.strEmail.focus();return false;}
			if(oForm.strEmail.value){if(!checkEmail(oForm.strEmail.value) ){alert('Invalid email address');oForm.strEmail.focus();return false;}}
			return true;}
		//]]>