function ViewImage(bildurl,b,h,buhoehe,bildtitel,bildunterschrift)
{
	var eigenschaften,fenster,b,h,fensterhoehe,buhoehe;
	var ns6 = (!document.all && document.getElementById);
	var ie4 = (document.all);
	var ns4 = (document.layers);
	x=100;
	y=100;
	fensterhoehe=parseInt(h)+buhoehe;
	eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+fensterhoehe+",menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no";
	fenster=window.open("","",eigenschaften);
	fenster.focus();
	fenster.document.open();
	with (fenster)
	{
	  document.write('<html><head>');
	  document.write('<scr' + 'ipt type="text/javascr' + 'ipt" language="JavaScr' + 'ipt">');
	  document.write("function click() { window.close(); } ");  // bei click  schliessen
	  document.write("document.onmousedown=click ");
	  document.write('</scr' + 'ipt>');
	  document.write('<title>'+ bildtitel +'</title><link href="style_popup.css" rel="stylesheet" type="text/css"></head>');
	  document.write('<' + 'body onblur="window.close();" ');// bei Focusverlust schliessen
	  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
	  document.write('<center>');
	  document.write('<img src="'+ bildurl +'" border="0"><table border="0" cellspacing="0" cellpadding="0" height="'+ buhoehe + '"><tr><td class="text" align="center" valign="middle" height="'+ buhoehe + '">'+ bildunterschrift + '</td></tr></table>');
	  document.write('</center>');
	  document.write('</body></html>');
	  fenster.document.close();
	}
}