function pageStart()
{
	if (document.getElementById)
	{
		nameInput = document.getElementById("contactName");
		nameInput.focus();
	}
}

function verifyRequestHelp()
{
	if (document.getElementById)
	{
		address = document.getElementById("address");

		if (address.value == "")
		{
			alert ("You must fill in the 'Address/Number' field.");
			address.focus();
			return false;
		}

		return true;
	}
}
