
var globalID;
var globalID_protect_menu1;
var globalID_protect_menu2;
var globalID_protect_menu3;
var globalID_protect_menu4;
globalID_protect_menu1=0;
globalID_protect_menu2=0;
globalID_protect_menu3=0;
globalID_protect_menu4=0;

	function visible(id)
	{	document.getElementById(id).style.display='';	}
	function invisible()
	{	if (globalID=="menu1") { if (globalID_protect_menu1!="1") { document.getElementById(globalID).style.display='none'; } }
		if (globalID=="menu2") { if (globalID_protect_menu2!="1") { document.getElementById(globalID).style.display='none'; } }
		if (globalID=="menu3") { if (globalID_protect_menu3!="1") { document.getElementById(globalID).style.display='none'; } }
		if (globalID=="menu4") { if (globalID_protect_menu4!="1") { document.getElementById(globalID).style.display='none'; } }
	}
	function invisible_all(id)
	{	if (id!="menu1") { document.getElementById('menu1').style.display='none'; }
		if (id!="menu2") { document.getElementById('menu2').style.display='none'; }
		if (id!="menu3") { document.getElementById('menu3').style.display='none'; }
		if (id!="menu4") { document.getElementById('menu4').style.display='none'; }
	}
	function invisible_timer(id)
	{	globalID = id;
		setTimeout("invisible()", 1500); }
	function protect_invisible(id)
	{	if (id=="menu1") { globalID_protect_menu1=1; }
		if (id=="menu2") { globalID_protect_menu2=1; }
		if (id=="menu3") { globalID_protect_menu3=1; }
		if (id=="menu4") { globalID_protect_menu4=1; }
	}
	function deprotect_invisible(id)
	{	if (id=="menu1") { globalID_protect_menu1=0; }
		if (id=="menu2") { globalID_protect_menu2=0; }
		if (id=="menu3") { globalID_protect_menu3=0; }
		if (id=="menu4") { globalID_protect_menu4=0; }
	}