<!--
function showimage(ref,name,w,h)
{
Hintergrundfarbe = "#000000"
Textfarbe = "#ffffff"
x = w + 8;
y = h + 8;
var nwl = ((screen.availWidth / 2 ) - x / 2);
var nwh = ((screen.availHeight / 2 ) - y / 2);
var win = window.open ('','image','width='+ x +',height='+ y +',location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,top='+ nwh +',left='+ nwl +'');
var doc = win.document;
doc.open();
doc.write('<html><head><title>'+name+'</title></head>');
doc.write('<body bgcolor="'+Hintergrundfarbe+'" text="'+Textfarbe+'" topmargin="4" leftmargin="4" maginwidth="4" marginheight="4" onblur="window.close()">');
doc.write('');
doc.write('<p>');
doc.write('<center> <a href="javascript:self.close();"> <img src="'+ref+'" alt="Fenster schliessen" width="'+w+'" height="'+h+'" border=0>');
doc.write('<br>');
doc.close();
}
//-->

