<!--
function showimage(ref,name,w,h)
{
Hintergrundfarbe = "#020096"
Textfarbe = "#FFFFFF"
x = w + 50;
y = h + 80;
var win = window.open ('','image','width='+ x +',height='+ y +',location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,top=10,left=10');
var doc = win.document;
doc.open();
doc.write('<html><head><title>'+name+'</title><meta http-equiv="imagetoolbar" content="no"></head>');
doc.write('<body bgcolor="'+Hintergrundfarbe+'" text="'+Textfarbe+'" topmargin="10" leftmargin="4" maginwidth="10" marginheight="4" onblur="window.close()">');
doc.write('');
doc.write('<p>');
doc.write('<center><img src="'+ref+'" alt="'+name+'" width="'+w+'" height="'+h+'" border=0>');
doc.write('<br>');
doc.write('<font face="verdana" size=-1 color="'+Textfarbe+'"><b>'+name+'</b></font><br><br>');
doc.write('<a href="javascript:self.close();"><font  face="verdana" size=-1 color="'+Textfarbe+'"<u>Fenster schliessen</u></font></a></center><p>'); 
doc.close();
}
//-->