// JavaScript Document<!-- //

function popup_show_menu(menu) { //v3.0
	menuObj = document.getElementById(menu);
	if (menuObj) {
		if (menuObj.style)
			menuObj.style.visibility = "visible";
	}
}

function popup_hide_menu(menu) {
	menuObj = document.getElementById(menu);
	if (menuObj) {
		if (menuObj.style)
			menuObj.style.visibility = "hidden";
	}
}

function act() { };
function inact() { };