// JavaScript Document

// Function for drop down menus

function toggleMenu(currMenu)
	{
	if (document.getElementById)
		{
		thisMenu=document.getElementById(currMenu).style
		if (thisMenu.display == "block")
			{
			thisMenu.display = "none"
			}
		else
			{
			thisMenu.display = "block"
			}
		return false
		}
	else
		{
		return true
		}
	}


function hideMenu(currMenu)
	{
	
	thisMenu.display = "none"
		
	}

	
// Script to open popup window on header when Evans Picture clicked//

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}