<!--


function checkform(infrm)
{

	if (!validate("string", infrm.firstname.value))
	{
		alert ("Please enter your first name.");
		infrm.firstname.focus();
		return false;
	}
	
	if (!validate("string", infrm.lastname.value))
	{
		alert ("Please enter your last name.");
		infrm.lastname.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 (infrm.property.selectedIndex==0)
	{
		alert ("You must select your site from the list provided.");
		infrm.property.focus();
		return false;
	}
	
	if (!validate("string", infrm.apt.value))
	{
		alert ("Please enter your apartment/unit number.");
		infrm.apt.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.box1.checked==0 && infrm.box2.checked==0)
		{
		alert ("You must check the box that represents your service request.");
		infrm.box1.focus();
		return false;
	}	


//	if (infrm.box2.checked==0)
//		{
//		alert ("You must agree to the terms by checking both boxes before you can submit your request.");
//		infrm.box2.focus();
//		return false;
//	}	

	return true;

}
//-->
