function request(f)
{
	if (f.requestedBy.value == "")
	{
		alert("Please fill in your name!");
		return false;
	}
	if (f.dateDue.value == "use calendar to select date ->")
	{
		alert("Please fill in the due date!");
		return false;
	}
	if (f.paddr.value == "")
	{
		alert("Please fill in the property address!");
		return false;
	}
	if (f.pcity.value == "")
	{
		alert("Please fill in the property city!");
		return false;
	}
	if (f.pstate.value == "")
	{
		alert("Please fill in the property state!");
		return false;
	}

	if (f.contact.value == "")
	{
		alert("Please fill in the contact name!");
		return false;
	}
	if (f.contactPhone.value == "")
	{
		alert("Please fill in the contact phone number!");
		return false;
	}
	if (f.lockboxCode.value == "")
	{
		alert("Please fill in the lockbox code. If none, put NA!");
		return false;
	}

	return true;

}


