/* neues Fenster mit abs. Groesse, J.R. 22.12.2008 */
/* mind. 100 Pixel gross ! */

function neuwin(inhalt,hoehe,breite,xx,yy)
{
 var schirm_h = screen.height;  var schirm_b = screen.width;  
 var win, links, oben;
     
 oben = schirm_h / 2 - hoehe / 2 + xx;
 links = schirm_b / 2 - breite / 2 +yy;

 win=window.open("","","height="+hoehe+",width="+breite+",left="+links+",top="+oben+",menubar=no,location=no,resizable=yes");
 win.location.href=inhalt;
}

/* Ende */
