function InformationField_Validator(theForm)
{
	if (theForm.propertyname.value == "")
	{
		alert("Please enter the property name.");
		theForm.propertyname.focus();
		return (false);
	}
	
	if (theForm.propertyaddress.value == "")
	{
		alert("Please enter the property address.");
		theForm.propertyaddress.focus();
		return (false);
	}
	
	if (theForm.propertycity.value == "")
	{
		alert("Please enter your city.");
		theForm.propertycity.focus();
		return (false);
	}
	
	if (theForm.propertyzip.value == "")
	{
		alert("Please enter your zip.");
		theForm.propertyzip.focus();
		return (false);
	}
	
	if (theForm.contactname.value == "")
	{
		alert("Please enter a contact name.");
		theForm.contactname.focus();
		return (false);
	}
	
	if (theForm.email.value == "")
	{
		alert("Please enter your email address.");
		theForm.email.focus();
		return (false);
	}
	
	if (theForm.phone.value == "")
	{
		alert("Please enter your phone number.");
		theForm.phone.focus();
		return (false);
	}
	
	if (theForm.propertyemployees.value == "")
	{
		alert("Please enter the number of employees.");
		theForm.propertyemployees.focus();
		return (false);
	}

	if (theForm.state.options[state.selectedIndex].value == "Please Select State")
	{
		alert("Please select your state.");
		theForm.state.focus();
		return (false);
	}

	return (true);
}

function CustomerServiceField_Validator(theForm)
{
	
	if (theForm.propertyname.value == "")
	{
		alert("Please enter the property name.");
		theForm.propertyname.focus();
		return (false);
	}
	
	if (theForm.propertyaddress.value == "")
	{
		alert("Please enter the property address.");
		theForm.propertyaddress.focus();
		return (false);
	}
	
	if (theForm.propertycity.value == "")
	{
		alert("Please enter your city.");
		theForm.propertycity.focus();
		return (false);
	}
	
	if (theForm.propertyzip.value == "")
	{
		alert("Please enter your zip.");
		theForm.propertyzip.focus();
		return (false);
	}
	
	if (theForm.contactname.value == "")
	{
		alert("Please enter a contact name.");
		theForm.contactname.focus();
		return (false);
	}
	
	if (theForm.email.value == "")
	{
		alert("Please enter your email address.");
		theForm.email.focus();
		return (false);
	}
	
	if (theForm.phone.value == "")
	{
		alert("Please enter your phone number.");
		theForm.phone.focus();
		return (false);
	}

	if (theForm.state.options[state.selectedIndex].value == "Please Select State")
	{
		alert("Please select your state.");
		theForm.state.focus();
		return (false);
	}

	return (true);
}