var faux = null;
var pic = new Image(); 
function popupwin(pic,w,h,t) { 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>IV-Schaltungen</title></head>');
	fd.write('<body bgcolor="#cad2df" onLoad="window.focus()">');
	fd.write('<div align="center"><table border="0" width="' + w + '">');
	fd.write('<tr><td align="center" valign="middle" colspan="2"><img src="' + 'bilder/' + pic + '.jpg" width="' + w + '" height="' + h + '" border="1"></td></tr>');
	fd.write('<tr><td><div style="font-family: verdana, sans; font-size: 12px;">'+ t +'</div></td>');
	fd.write('<td align="right"><a href="javascript:window.close()"><img src="bilder/assets/closewindow.gif" alt="zu" width="22" height="22" border="0"></a></td></tr>');
	fd.write('</table></div></body></html>');
	fd.close();
} 

