//@*FOR MENU OPEN*
function menuSelect(id, flag) {
if (document.all) {
	document.all.item(id).style.visibility = "visible";
	}
if (document.getElementById) {
        document.getElementById(id).style.visibility = "visible";
	}
if (document.layers) {
	document.layers[id].visibility = "show";
	}
}


//@*FOR MENU CLOSE*
function menuHide(id, flag) {
if (document.all) {
	document.all.item(id).style.visibility = "hidden";
	}
if (document.getElementById) {
	 document.getElementById(id).style.visibility = "hidden";
	}
if (document.layers) {
	document.layers[id].visibility = "hide";
	}
}

// *FOR MENU ALL CLOSE*
function hideAll(){
menuHide('information');
menuHide('proceeding');
menuHide('president');
menuHide('statements');
}
