function Gallerie (Bild, Titel)        {
var Fenster = window.open("", "GalerieFenster", "scrollbars=yes,resizable=yes,width=640,height=500");

Fenster.document.open ("text/html");
Fenster.document.bgColor = "#ffffff";
Fenster.document.writeln ("<center>");
Fenster.document.writeln ("<table border='0' cellpadding='2' cellspacing='0' width='30%'>");
Fenster.document.writeln ("<tr>");
Fenster.document.writeln ("<td align='center' colspan='3' bgcolor='#0000FF' height='20'><font face='Arial' color='#FFFFFF' size='2'><strong>" + Titel + "&nbsp;</strong></font></td>");
Fenster.document.writeln ("</tr>");
Fenster.document.writeln ("<tr>");
Fenster.document.writeln ("<td width='10%' bgcolor='#0000FF'>&nbsp;</td>");
Fenster.document.writeln ("<td align='center' width='33%'><img src='" + Bild + "' alt='Das Bild wird geladen...'></td>");
Fenster.document.writeln ("<td valign='bottom' width='10%' bgcolor='#0000FF'>&nbsp;</td>");
Fenster.document.writeln ("</tr>");
Fenster.document.writeln ("<tr>");
Fenster.document.writeln ("<td align='center' valign='bottom' colspan='3' bgcolor='#0000FF' height='20'><font face='Arial' color='#FFFFFF' size='1'>© D.a.-Online 1997-2000</font></td>");
Fenster.document.writeln ("</tr>");
Fenster.document.writeln ("</table>");
Fenster.document.writeln ("<font face='Arial' size='2'>[ <A HREF='JavaScript:window.close ()'>Fenster schließen</A> ]</font>");
Fenster.document.writeln ("</center>");
Fenster.document.close();
}
