


function Vollbild(Bild,Breit,Hoch)
{
fensterBreite = Breit+135;
fensterHoehe = Hoch+175;

ScreenWidth = screen.width;
ScreenHeight = screen.height;

fensterPosBreite = (ScreenWidth/2)-(fensterBreite/2);
fensterPosHoehe = (ScreenHeight/2)-(fensterHoehe/2);

        NewWindow=window.open("","Bild","height="+fensterHoehe+",width="+fensterBreite+",scrollbars=no,resizable=no,top="+fensterPosHoehe+",left="+fensterPosBreite+"");
        NewWindow.document.write ("<html><head><title>VOLLBILD");
        NewWindow.document.write ("</title></head>");
        NewWindow.document.write ("<body bgcolor='#ffffff' onload='focus()'>");
        NewWindow.document.write ("<table align='center'><tr>");
        NewWindow.document.write ("<td align='center' valign='top'>");
        NewWindow.document.write ("<table border='0' bgcolor='#cad3cb' cellpadding='0' cellspacing='1'><tr><td align='center'>");
        NewWindow.document.write ("<img src=");
        NewWindow.document.write (Bild);
        NewWindow.document.write (">");
        NewWindow.document.write ("</tr></table>");
        NewWindow.document.write ("</td></tr><tr>");
        NewWindow.document.write ("<td align='center' valign='bottom'>");
        NewWindow.document.write ("<br><center><form><input type='button' value='FENSTER SCHLIESSEN' style='font-family: Arial; font-size: 10px' onClick='self.close()'>");
        NewWindow.document.write ("</td></tr></table>");
        NewWindow.document.write ("</form></body></html>");
        NewWindow.document.close();
                     NewWindow.resizeTo(fensterBreite,fensterHoehe);
}
