function openPictureWindow(imageName,alt,imageWidth,imageHeight,posLeft,posTop) {
	if (typeof(alt)=='undefined') alt="&copy; Philips Symfonie Orkest";
	if (typeof(imageWidth)=='undefined' || imageWidth=='') imageWidth=800;
	if (typeof(imageHeight)=='undefined' || imageHeight=='') imageHeight=600;
	if (typeof(posTop)=='undefined' || posTop=='') posTop=(screen.height-imageHeight-20)/2;
	if (typeof(posLeft)=='undefined' || posLeft=='') posLeft=(screen.width-imageWidth)/2;
	newWindow = window.open("","Imagedetail","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt="'+alt+'" onclick="window.close()">'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
};

