<!-- Original:  Anders Jennerberg (anders@katedral.se)  -->
<!-- modifiziert: Sven Buchholz (buchholz@preisler.de)  -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

function ViewImage(ifile,ix,iy) { 

fenster_hoehe = iy + 43;
fenster_breite = ix+8;

var win;
var sWidth;
var sHeight;
var NS = (document.layers) ? 1 : 0;
win = window.open("","imageviewer","width="+fenster_breite+",height="+fenster_hoehe+",menubar=no,toolbar=no");

win.focus();

win.document.open();
win.document.write("<html><head><title>Kotte GmbH - Gro&szlig;bildansicht</title>");


win.document.write('<style type="text/css">');
win.document.write("A:Link { text-decoration : none; }");
win.document.write("body { margin-left:0px; margin-top:0px; }");
win.document.write("td.schrift {font-family:Verdana, Helvetica, Arial, Sans-serif; font-size:9pt; font-weight:bold; color:#FFFFFF;}");
win.document.write("</style>");

win.document.write('</head><body bgcolor="#CCCCCC" link="#FFFFFF" alink="#00629C" marginwidth="0" marginheight="0">');
win.document.write('<table width="100%" border=0 cellpadding="3" cellspacing="0">');
win.document.write('<tr><td width="100%" class=schrift bgcolor="#00629C" align=right><a href="javascript:self.close()">Fenster schlie&szlig;en</a></td></tr></table>');
win.document.write('<div align=center><img src='+ifile+' width='+ix+' height='+iy+'></div');
win.document.write("</body></html>");
win.document.close();

}
