<!--
function openPictureWindow(imageName,imageWidth,imageHeight,alt)
{

	breite	= eval(imageWidth);
	hoehe	= eval(imageHeight);
	abstand	= 22;

	hor	= eval(breite+abstand);
	ver	= eval(hoehe+abstand);

	newWindow = window.open("","newWindow","width="+hor+",height="+ver);
	newWindow.document.open();
	newWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" xml:lang="de" lang="de"><head><title>'+alt+'</title><meta name="MSSmartTagsPreventParsing" content="true" /><meta http-equiv="imagetoolbar" content="no" /></head><body style="margin:0;padding:0;background:#ffffff;" onBlur="self.close()">');
	newWindow.document.write('<img style="border:1px solid #999" hspace=10 vspace=10 src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+' />');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
//-->