function showMenu(bShow) {
	obj = document.getElementById("popupmenu");
	if (bShow) {
		obj.style.top = "95px";
	} else {
		obj.style.top = "-999px";
	}
}