  <!--
function zeigebild (bild,breite,hoehe,text)
 
     {
     var win;
     var params="width="+breite+",height="+hoehe;
     win=window.open("","",params);
     win.document.open();
     win.document.write("<html><head><title>"+text+"</title></head><body bgcolor=#ffffff>");
     win.document.write("<img src=http://www.maiv-darmstadt.de/bilder/"+bild+" alt="+text+">");
     win.document.write("</body></html>");
     win.document.close();
     }
//-->

