function op_popup(gif_name, gif_width, gif_height) {
var tmp_width=gif_width;
var tmp_height=gif_height;
var Neu = window.open('', 'g1', 'screenX=200,screenY=200,width='+tmp_width+',height='+tmp_height);
 Neu.document.write('<html>\n');
 Neu.document.write('<head><title>Zoom :: Bild</title>\n');
 Neu.document.write('</head>\n');
 Neu.document.write('<body bgcolor="#FFFFFF" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">\n');
 Neu.document.write('  <p><img src="'+gif_name+'" width="'+gif_width+'" height="'+gif_height+'"></p>\n');
 Neu.document.write('</body>\n');
 Neu.document.write('</html>\n');
 Neu.document.close;
}
