function menu(link) 
{
		window.location = "/BSI/" + link + ".php";
}

function hover(menu)
{
	document.getElementById(menu).style.display = "block";
	document.getElementById(menu + "a").style.background = "#B4BF69";
	document.getElementById(menu + "a").style.color = "#735E3F";
}

function hide(menu)
{
	document.getElementById(menu).style.display = "none";	
	document.getElementById(menu + "a").style.background = "#909956";
	document.getElementById(menu + "a").style.color = "#33291C";
}

function map()
{
	window.open("map.php", "Directions", "menubar=1,resizable=1,width=640,height=512");
}