function CheckContactForm(thisform)
{
	var BadForm;	
	BadForm = false;	
	if (thisform.nam.value == "") { BadForm = true;}
	if (thisform.add.value == "") { BadForm = true;}
	if (thisform.zip.value == "") { BadForm = true;}
	if (thisform.pho.value == "") { BadForm = true;}			
	if (thisform.ema.value == "") { BadForm = true;}	
	if (thisform.com.value == "") { BadForm = true;}	
	if (BadForm == true)
	{
		alert("All information must be completed.  Please enter information for every field.");
		return false;
	}
	else
	{
		return true;
	}
}

function CheckRequestForm(thisform)
{
	var BadForm;	
	BadForm = false;
	if (thisform.nam.value == "") { BadForm = true;}
	if (thisform.add.value == "") { BadForm = true;}
	if (thisform.sta.value == "") { BadForm = true;}
	if (thisform.zip.value == "") { BadForm = true;}
	if (thisform.pho.value == "") { BadForm = true;}			
	if (thisform.ema.value == "") { BadForm = true;}	
	if (thisform.mon.value == "") { BadForm = true;}
	if (thisform.day.value == "") { BadForm = true;}
	if (thisform.yea.value == "") { BadForm = true;}			
	if (thisform.eve.value == "") { BadForm = true;}				
	if (BadForm == true)
	{
		alert("Fields with a (**) must be completed.");
		return false;
	}
	else
	{
		return true;
	}		
}