function fenster(bildurl)
{
	var eigenschaft,sbreite,shoehe,f1,b,h;

	bildtitel = "MacroTech Steuerungstechnik GmbH";

	b=700;
	h=500;
	
	sbreite=screen.width;
	shoehe=screen.height;
	x = (sbreite-b)/2;
	y = (shoehe-h)/2;
	
	eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no,scrollbars=no";
	
	f1=window.open("","",eigenschaften);
	f1.focus();
	f1.document.open();
	with (f1) {
	  document.write('<html><head>');
	  document.write('<title>'+ bildtitel +'</title></head>');
	  document.write('<body bgcolor=#D9E1E0 marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
	  document.write('<table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr><td><center>');
	  document.write('<img src="'+ bildurl +'"border="0">');
	  document.write('<center></td></tr></table>');
	  document.write('</body></html>');
	  f1.document.close();
	}
}
