<!---- BEGIN FORM VALIDATION ---->	
	<!-- 
	function checkform(thisform)
	{
		
		if (document.theform.Name.value == "")
		{
		document.theform.Name.focus();
	    alert("Please provide your name.");
	    return false;
	    }	
		
		if (document.theform.eMail.value.indexOf("@") == -1 ||
	         (document.theform.eMail.value.indexOf('.') == -1))
	    {
		document.theform.eMail.focus();
	    alert("Please enter a valid e-mail address");
	    return false;
	    }

		if (document.theform.Comments.value == "")
		{
		document.theform.Comments.focus();
	    alert("Please provide any useful comments.");
	    return false;
	    }							
	}	
	  // -->			  
<!---- END FORM VALIDATION ---->	
