
<!--
function checkform2(infrm)
{
	if (!validate("string", infrm.name.value))
	{
		alert ("Please enter your name.");
		infrm.name.focus();
		return false;
	}
	if (!validate("email", infrm.email.value))
	{
		alert ("Please enter a valid e-mail address.");
		infrm.email.focus();
		return false;
	}	
	
	
	if (!validate("string", infrm.comments.value))
	{
		alert ("Please supply some information regarding the nature of your contact.");
		infrm.comments.focus();
		return false;
	}		
	
	return true;

}
//-->
