// JavaScript Document


<!--   NO ERRORS ARE FOUND WHEN WE MAKE IT EXTERNAL.... AND COMMENT OUT UNNECESSARY FUNCTIONS    -->



	function setState(identifier)  /* identifier is passed in here...   this is the code from one below:   onmouseover="setStateID('AL');"    */
	{
		
		var highlighter = document.getElementById("StateHighlighter");
		highlighter.className = "Map" + identifier;
		
		//var states = document.getElementById("<%=this.UniqueID%>_State");
		//apparently the states = doesn't matter either!
		
		//for (x = 0; x < states.options.length; x++)
		//{
		//	if (states.options[x].value == identifier)  /* if where we are.value = identifier, do this... */
		//	{
		//		states.selectedIndex = x;  /* example: state 35 = selected index */
		//		break;
		//	}
		//}
		//this for loop apparently does nothing!!!!
	}
	
	function clearState(identifier)
	{
		var highlighter = document.getElementById("StateHighlighter");
		if (highlighter.className == "Map" + identifier)
		{
			highlighter.className = "hidden";
			//document.getElementById("<%=this.UniqueID%>_State").selectedIndex = 0;
		}
	}
	
	//function searchState()
	//{
	//	document.getElementById("<%=this.UniqueID%>_Submit").click();
	//}
	//this doesn't really do anything either

