// JavaScript Document

function ShowMenu(id){
var d=document.getElementById(id);
var p=d.className;
var menus=document.body.getElementsByTagName("DIV");
for (i=0; i<menus.length; i++) if(menus[i].className=="display") menus[i].className="hidden";
d.className=(p!="display")?"display":"hidden";
}

var popUpWin=0;

function popUp(URLStr, width, height){
if(popUpWin) if(!popUpWin.closed) popUpWin.close();
popUpWin=open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+(width+12)+',height='+(height+15)+'')}