var menus = new Array();

function showMenu(id) {
	menus[id] = false;
	document.getElementById(id).style.display = 'block';
}

function hide (id) {
	if (menus[id])
	{
		document.getElementById(id).style.display = 'none';
	}
}
function hideMenu(id) {
	menus[id] = true;
	hide(id);
}

function setClassOn(id) {
	document.getElementById(id).className = 'on';
}
function setClassOff(id) {
	document.getElementById(id).className = 'off';
}

function writeflash(path,name,w,h){
document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"'><param name='movie' value='"+path+"' /><param name='quality' value='high' /><param name='scale' value='exactfit' /><param name='wmode' value='transparent' /><embed src='"+path+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+w+"' height='"+h+"' wmode='transparent'></embed></object>");
}

function showhidediv(showdiv, hidediv){
	document.getElementById(showdiv).style.display = 'block';
	document.getElementById(hidediv).style.display = 'none';
}

