//function popup(url, name, w, h, resize) {
//	winprops = 'width='+w+',height='+h+',resizable='+resize+',scrollbars=yes';
//	window.open(url, name, winprops);
//};


function popup(url, name, w, h, resize) {
	winprops = 'width='+w+',height='+h+',resizable='+resize+',scrollbars=yes';
	win=window.open(url, name, winprops);


	win.document.write('<html><head>');
	win.document.write('<title>detail</title></head>');
	win.document.write('<meta http-equiv="imagetoolbar" content="false" />');
	win.document.write('<scr' + 'ipt type="text/javascr' + 'ipt" language="JavaScr' + 'ipt">');
  	win.document.write("function click() { window.close(); } ");  // bei click  schliessen
  	win.document.write("document.onmousedown=click ");
  	win.document.write('</scr' + 'ipt>');
	win.document.write('<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="window.close()">');
	win.document.write('<img src="'+url+'" border="0" ></body></html>');
	win.document.close();
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
};
