/***************************************************************************
	Theme Name: Altitude Essentials, LLC
	Theme URI: http://www.altitudeessentials.com
	Description: Form JS file to verify required fields in the form
	Date: 5 January, 2007 
	Author: Petra G. Yocum (www.bigbcreations.com)
***************************************************************************/

//verify that Permission to Enter is checked
	function validateForm(REQUESTFORM)
	{
		if (REQUESTFORM.Description.value == "")
		{
			alert("Please enter Description.")
			REQUESTFORM.Description.focus()
			return false
		}
		if (REQUESTFORM.PermissionToEnter.checked == false)
		{
			alert("Please check Permission to Enter checkbox.")
			REQUESTFORM.PermissionToEnter.focus()
			return false
		}
	}