<!-- 

function showmenu(id) {
document.getElementById("menu_more").style.visibility = "hidden";
document.getElementById(id).style.visibility = "visible";
}


function hidemenus() {
document.getElementById("menu_more").style.visibility = "hidden";
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function popup(page,name,width,height) {
window.open(page,name,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height+",screenX=0,screenY=0,top=0,left=0");
}

//--> 
