// JavaScript Document

<!--
	function HideMenu(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "none";
	}
	function ShowMenu(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "block";
	}
	function ShowTab(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.backgroundPosition = "bottom left";
	}
	function HideTab(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.backgroundPosition = "0px -88px";
	}
	function ReverseMenuDisplay(d) {
	if(d.length < 1) { return; }
	if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
	else { document.getElementById(d).style.display = "none"; }
	}
//-->
