<!--


function checkform(infrm)
{

	if (infrm.action.value=='L')
		{
		return true;
		}

	if (!validate("string", infrm.name.value))
	{
		alert ("Please enter your name.");
		infrm.name.focus();
		return false;
	}
	
	if (!validate("string", infrm.company.value))
	{
		alert ("Please enter your company name.");
		infrm.company.focus();
		return false;
	}	
	
	if (!validate("string", infrm.phone.value))
	{
		alert ("Please enter your telephone number so we may reach you with questions if necessary.");
		infrm.phone.focus();
		return false;
	}
	
	
	if (!validate("email", infrm.email.value))
	{
		alert ("You must enter a valid e-mail address.");
		infrm.email.focus();
		return false;
	}		
	
	
		
	if (!validate("string", infrm.comments.value))
	{
		alert ("Please enter a description of your request so we may better serve you.");
		infrm.comments.focus();
		return false;
	}	
	
	if (!infrm.agree.checked)
		{
		alert ("You must agree to the terms by checking the box provided.");
		infrm.agree.focus();
		return false;
	}	



	return true;

}
//-->
