
<!--


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.adr.value))
	{
		alert ("Please enter your address.");
		infrm.adr.focus();
		return false;
	}	
	
	if (!validate("string", infrm.city.value))
	{
		alert ("Please enter your city.");
		infrm.city.focus();
		return false;
	}	
	
	if (infrm.state.selectedIndex==0)
	
		{
		alert ("Please select your state.");
		infrm.state.focus();
		return false;
	}		
	
	if (!validate("string", infrm.zipcode.value))
	{
		alert ("Please enter your zip code.");
		infrm.zipcode.focus();
		return false;
	}		
	
	
		if (!validate("string", infrm.phone.value))
	{
		alert ("Please enter your telephone number.");
		infrm.phone.focus();
		return false;
	}

	//if (!validate("email", infrm.email.value))
	//{
	//	alert ("You must enter a valid email address.");
	//	infrm.email.focus();
	//	return false;
	//}
	
		
	if (infrm.myheater.selectedIndex==0)
	
		{
		alert ("Please select the reason for contacting us.");
		infrm.myheater.focus();
		return false;
	}	




	
	return true;

}


//-->

