function request(f)
{
	if (f.requestedBy.value == "")
	{
		alert("Please fill in your name!");
		return false;
	}
	if (f.contactName.value == "")
	{
		alert("Please fill in the contact name!");
		return false;
	}
	if (f.company.value == "")
	{
		alert("Please fill in the company name!");
		return false;
	}
	if (f.contactPhone.value == "")
	{
		alert("Please fill in the contact phone number!");
		return false;
	}
	if (f.conctactEmail.value == "")
	{
		alert("Please fill in the contact email!");
		return false;
	}

	if (f.dueDate.value == "")
	{
		alert("Please fill in the due date!");
		return false;
	}
	if (f.addr.value == "")
	{
		alert("Please fill in the property address!");
		return false;
	}
	if (f.city.value == "")
	{
		alert("Please fill in the city!");
		return false;
	}
	if (f.state.value == "")
	{
		alert("Please fill in the state!");
		return false;
	}
	if (f.zip.value == "")
	{
		alert("Please fill in the zip code!");
		return false;
	}
	if (f.lockbox.value == "")
	{
		alert("Please fill in the lockbox code!  If none, please put NA.");
		return false;
	}
	if (f.workDesc.value == "")
	{
		alert("Please fill in the work description!");
		return false;
	}
	if (f.photos.value == "")
	{
		alert("Please fill in if photos needed!");
		return false;
	}
	if (f.electricity.value == "")
	{
		alert("Please fill in if electricity is on!");
		return false;
	}
	if (f.water.value == "")
	{
		alert("Please fill in if water is on!");
		return false;
	}


	return true;

}

