function ToggleInstructions()
	{
		if (this.document.all["instructions"].className == "instructions_hidden")
		{
			this.document.all["instructions"].className = "instructions_visible";
		}
		else this.document.all["instructions"].className = "instructions_hidden";
		return true;
	}
	
	function checkEntry()
	{
		if(document.forms['streetlightreport'].direction.selectedIndex == 0)
		{
			alert("Please Indicate the Direction of the Street Light from the Intersection");
			return false;
		}
		if(document.forms['streetlightreport'].numberof.selectedIndex == 0)
		{
			alert("Please Indicate the Number of Street Lights Affected");
			return false;
		}
		if(document.forms['streetlightreport'].wrong.selectedIndex == 0)
		{
			alert("Please Indicate what is Wrong with the Light");
			return false;
		}
		return true;	
	}
