_menus=new 	Array();
function set_openable(tmpvar){
	this._menus=tmpvar;
}
function showmenu(view){
	for(i=0;i<this._menus.length;i++)
	{
		
//		alert(this._menus.length);

		//		alert(this._menus[i]);
		if(view == this._menus[i])
		{
			tmpa = view+"";
			obja= document.getElementById(tmpa);
			obja.style.display='';

		} else{
			tmp2 = this._menus[i]+"";
			objb= document.getElementById(tmp2);
			objb.style.display='none';
		}
	}
}
function showmenu_all(){
	for(i=0;i<this._menus.length;i++)
	{
			tmpa = view+"";
			obja= document.getElementById(tmpa);
			obja.style.display='';
	}
}

function showmenu_(arg) { //v9.0
  var i,p,v,obj,args=MM_showHideLayers2.arguments;
	for(i=0;i<this._menus.length;i++)
	  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'inline':(v=='hide')?'none':v; }
    obj.display=v; }
}