var objPopUp = null;
var popUpOn = 0;

function popUp(evt,objectID,anchor) {
  if (popUpOn == 1) popHide();
  document.onclick = popHide;
  var evt = (evt) ? evt : ((window.event) ? event : null);
  objPopUp = document.getElementById(objectID);
  objPopUp.style.visibility = 'visible';
  objPopUp.style.display = 'block';
}

function popHide() {
  if (popUpOn == 0) {
    popUpOn = 1;
    return
  }
  else {
    objPopUp.style.visibility = 'hidden';
    objPopUp.style.display = 'none';
    objPopUp = null;
    popUpOn = 0;
    document.onclick = null;
  }
}

function popWin(URL, winHeight, winWidth) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + winWidth + ",height=" + winHeight + ",left = 200,top = 100');");
}