	function Picture(picname,width,height,caption)
	{

		Magnifier=open("","","menubar=no,toolbar=no,location=no,directories=no,scrollbars=no,status=no,resizable=no,height="+height+",width="+width+",left="+(screen.width/2-width/2)+",top="+(screen.height/2-height/2-20));
                       
		Magnifier.document.open();
  		Magnifier.document.write('<HTML><title>'+caption+'</title><HEAD></HEAD>');
  		Magnifier.document.write('<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000" leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
  		
  		Magnifier.document.write('<a href="JavaScript:void(0)" onClick="window.close()"><img src="'+picname+'" border=0 alt="Закрыть"></a>');
  		Magnifier.document.write('</BODY></HTML>');
  		Magnifier.document.write('');

  		
		Magnifier.document.close(); 
                          
	
}