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 googlePage()
{
	newWindow = window.open("Google Search Page", "Google Search Page", "toolbar=yes, location=yes, scrollbars=yes, width=600, height=400")
}