var poze;
function o(fileName,w,h)
	
	{
				
				if(poze) poze.close();
				X = (screen.width - 500)/2;
				Y = (screen.height - 600)/2;
												poze=window.open("about:blank","ss",'scrollbars=no,status=no,menubar=no,location=no,resizable=no,titlebar=no,width='+w+',height='+h+',left='+X+',top='+Y);
												poze.document.write('<html><head>');
												poze.document.write('<title>Picture</title>');
												poze.document.write('</head>');
												poze.document.write('<body bgcolor="#ffffff" style="margin:0">');
												poze.document.write('<img border="0" src="'+fileName+'" onClick="window.close();">');
												poze.document.write('</body></html>');
		
			
							poze.focus();
				return false;
	}
