function ShowInfo(id) {
  for(var i=0; i<=6;i++) {
    genid = 'moshelp_info' + i;
    element = window.document.getElementById(genid);
    if(element) {
      if(id==genid) {
        value = 'block';
      } else {
        value = 'none';
      }
      element.style.display = value;
    }
  }
}

function mos_popup(page,width,height) {
  win = window.open('index.php?page=' + page, "mos_popupwin",
    'dependent=yes,location=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=yes,height=' 
    + height + ',width=' + width);
  win.focus();
}

function mos_popupurl(url,width,height) {
  win = window.open(url, "mos_popupwin",
    'dependent=yes,location=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=yes,height=' 
    + height + ',width=' + width);
  win.focus();
}
