<!--		
function formcheck(form,button){
	if(checklength(form.FirstName,1)||checklength(form.LastName,2))
		{alert("Please enter your NAME and other contact information.");
		return false;}
	if(checklength(form.Address,5)||checklength(form.City,3)||checklength(form.State,2)||checklength(form.Zip,5))
		{alert("Please enter your FULL ADDRESS and other contact information.");
		return false;}
	if(checklength(form.HomePhoneArea,3)||checklength(form.HomePhone,7))
		{alert("Please enter your PHONE and other contact information.");
		return false;}
	if(checklength(form.email,7))
		{alert("Please enter your EMAIL and other contact information.");
		return false;}
	form.Email.value=form.email.value;
	form.submit();
	return true;
}
function checklength(obj,desiredlength)
	{
	if(obj.value.length < desiredlength)
		return true
	else return false
	}
//-->
