function openPictureWindow(imageFilePath,alt,left,top) {  // v4.01
	
	var alt = alt || 'image';
	var left = left || 100;
	var top = top || 100;

		
	
	newWindow = window.open(imageFilePath, "newWindow", "width=700,height=500,scrollbars=yes,resizable=yes,status=no,left="+left+", top="+top);
	/*newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><script>var plusH = document.all ? 35 : 55; var plusW = document.all ? 25 : 25;</script><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onMousedown="self.close()" onBlur="self.close()">'); 
	newWindow.document.write('<img src="'+imageFilePath+'"  onload="self.resizeTo(this.width+plusW,this.height>600?\'600\':this.height+plusH);" alt="'+alt+'">'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	*/
	newWindow.focus();
	
	return;
}