<!--

function checkform(infrm)
{

	if (!validate("string", infrm.name.value))
	{
		alert ("Please enter your name.");
		infrm.name.focus();
		return false;
	}
	


	if (infrm.reason.selectedIndex==0)
		{
		alert ("Please select a reason for contacting us.");
		infrm.reason.focus();
		return false;
		}

	if (!validate("string", infrm.comments.value))
	{
		alert ("Please enter comments, questions or a story of your own.");
		infrm.comments.focus();
		return false;
	}


	return true;

}
//-->

