/* neues Fenster mit abs. Groesse, J.R. 5.5.2003 */

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+",location=no,resizable=yes");
 win.location.href=inhalt;
}

/* Ende */
