
//************************ help PopUp

function hpopup(datei)
  {
   Fenster = window.open(datei,"Help","width=550,height=420,top=100");
   Fenster.focus();
  }
function h2popup(datei)
  {
   Fenster = window.open(datei,"Help","width=550,height=420,top=100,scrollbars=yes");
   Fenster.scrollbars.visible = true;
   Fenster.focus();
  }
