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('<html><title>'+alt+'</title><meta name="MSSmartTagsPreventParsing" content="true" /><meta http-equiv="imagetoolbar" content="no" /><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(); 
}

/***********************************************************************/

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,"scrollbars=yes, width=700, height=400");
}