function openPictureWindow(file_name, comment, left, top, width, height)
{
	var wnd_w = 10+width;
	var wnd_h = 50+height;
	
	newWindow = window.open("","newWindow","width="+wnd_w+",height="+wnd_h+",left="+left+",top="+top+",scrollbars");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+comment+'</title></head>');
	newWindow.document.write('<body bgcolor="#FFFFFF" style="margin:5px;" onBlur="self.close()">'); 
	newWindow.document.write('<img src="'+file_name+'" width="'+width+'" height="'+height+'" alt="'+comment+'" align="center">'); 
	newWindow.document.write('<p align="center">'+comment+'</p>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}