var faux=null;
var pic=new Image();

function popUp(pic,w,h) {
 width=w+60;
 height=h+80;
 options= "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1"

 faux=window.open('','newWin',options);
 var fd=faux.document;
 fd.open();
 fd.write('<html><head><title>FTW-Wagner</title></head>');
 fd.write('<body bgcolor="#dadada" onLoad="window.focus()">');
 fd.write('<div align="center"><table border="0" cellpadding="5" width="'+w+'">');
 fd.write('<tr><td align="center" valign="middle"><img src="' + pic + '" width="' + w + '" height="' + h + '"></td></tr>');
 fd.write('<tr><td align="center" valign="middle"><a href="javascript:window.close();">Schliessen</a></td></tr>');
 fd.write('</table></div></body></html>');
 fd.close();
 }
