function oeffne_max(adresse,beschreibung,breite,hoehe)
{
   if (breite > screen.availWidth)
   {
     var newWidth = screen.availWidth;
   }
   else
   {
     var newWidth = breite;
   }
   if (hoehe > screen.availHeight)
   {
     var newHeight = screen.availHeight;
   }
   else
   {
     var newHeight = breite;
   }
   var nwl = (screen.width-newWidth)/2;
   var nwh = (screen.height-newHeight)/2;
   neufens=window.open("","","toolbar=no,location=no,status=no,scrollbars=no,resizable,menubar=no,width='+breite+',height='+hoehe+'");

   neufens.resizeTo(newWidth,newHeight);
   neufens.moveTo(nwl,nwh);
   neufens.document.write('<html><head><title>K.&Ouml;.M.L. Normannia Graz im MKV</title><link rel="stylesheet" type="text/css" href="nmg.css"></head>');
   neufens.document.write('<body><p>');
   neufens.document.write(beschreibung);
   neufens.document.write('<br><br><a href="javascript:window.close()" alt="Fenster schlie&szlig;en">Fenster schlie&szlig;en</a></p><center><img src="');
   neufens.document.write(adresse);
   neufens.document.write('" alt="');
   neufens.document.write(adresse);
   neufens.document.write('"></center></body></html>');
   
}