<!--
// Browser sniffer for Mac IE5 which is not behaving
if (navigator.appVersion.indexOf("MSIE 5.0; M")>0)
{
	document.write("<link rel='stylesheet' href='res/css/main_macie5.css' type='text/css' media='screen, print' />");
	//alert('ie5 mac');
}

function NewWindow(mypage, myname, w, h, props) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+','+props
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}

function Show_Stuff(Click_Menu_ID){

var nSpan = document.getElementById(Click_Menu_ID);
if (nSpan.style.display == "none")
{
nSpan.style.display = "";
}
else
{
nSpan.style.display = "none";
}
}



// -->