function screen_tip(seite)
 {
   breite=220 ;
   hoehe=250  ;   
   oben=screen.height-screen.availHeight ;
   links=screen.availWidth-breite-30 ;
   optionen="Width="+breite+",Height="+hoehe+",Left="+links+",top="+oben+",resizable=no,scrollbars=yes";

   fenster=window.open(seite,"Screentip",optionen);
   fenster.focus();
 }
