function openPictWindow(imageName,imageWidth,imageHeight,alt,description) {
	var newimageHeight;
	var newleft;
	var newtop;
	newimageHeight=eval(imageHeight)+40;
	newleft = eval((screen.availWidth-imageWidth)/2)
	newtop = eval((screen.availHeight-newimageHeight)/2)
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+newimageHeight+",left="+newleft+",top="+newtop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#CC0033" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<center>'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt="'+alt+'">'); 
	newWindow.document.write('<br><font face="arial", size="-1", color="#FFFFFF">'+description+'</font>');
	newWindow.document.write('<br><right><a href="javascript:window.close()"><font face="arial", size="-1", color="#AAAAAA"><b>Sluit dit venster</b></font></a></right>');
	newWindow.document.write('</center></body></html>');
	newWindow.document.close();
	newWindow.focus();
}