<!-- 
function AmITop() {
  if (top != self) { top.location.href= self.location.href; }
}

function NewWin(seite,breite,hoehe,sw_Resizable,sw_Scrollbars,sw_Status,sw_Location,sw_Toolbar) {
  var paramString = "HEIGHT=" + hoehe + ",WIDTH=" + breite + ",RESIZEABLE=" + sw_Resizable + ",SCROLLBARS=" + sw_Scrollbars + ",STATUS=" + sw_Status + ",LOCATION=" + sw_Location + ",TOOLBAR=" + sw_Toolbar;
  window.open(seite,'fenster2',paramString);
  void(1);
}

function PicWin(seite,breite,hoehe,sw_Resizable,sw_Scrollbars,sw_Status,sw_Location,sw_Toolbar) { 
  breite = breite + 50;
  hoehe = hoehe + 130; 
  NewWin(seite,breite,hoehe,sw_Resizable,sw_Scrollbars,sw_Status,sw_Location,sw_Toolbar);
  void(1);
}

AmITop();
window.name="lnonline";
-->