var faux = null;
var pic = new Image(); 

function openWindow(dir,pic,w,h,title) { 
	width = w + 60; 
	height = h + 60;
	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>'+ title +'</title>');
	
	fd.write('<style type="text/css"><!--'
		+ 'body {background: #aaaaaa;}'
		+ 'table, tr, td {background: #dedede;}'
		+ '/--></style>');

	fd.write('</head><body bgcolor="#000000" onLoad="window.focus()"><br><div align="center">'
		+ '<table border="0" cellpadding="1" cellspacing="0"><tr><td>'
		+ '<a href="#" onClick="javascript:window.close()" title="Fenster schliessen">'
		+ '<img src="../' + dir + '/bilder/plakat/' + pic + '.jpg" width="'+ w +'" height="'+ h +'" border="0">'
		+ '</a></td></tr></table>'
		+ '</div></body></html>');
	fd.close();
}