function openWin (a,w,h,n) {
	x=(document.body.clientWidth-w)/2;
	y=(document.body.clientHeight-h)/2;
	picWin = open('','','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',toolbar=no,location=no,directories=no,copyhistory=no,scrollbars=no,menubar=no,resizable=no,status=no'); 
	picWin.document.open();
	picWin.document.write('<html><head><title></title></head>'); 
	picWin.document.write('<body style="margin:0;padding:0;">'); 
	picWin.document.write('<img src="'+a+'" width="'+w+'" height="'+h+'" alt="Image '+n+'" onclick="window.close();" title="Закрыть" style="cursor:pointer;" />');
	picWin.document.write('</body></html>'); 
	picWin.document.close(); 
}


function openWinEng (a,w,h,n) {
	x=(document.body.clientWidth-w)/2;
	y=(document.body.clientHeight-h)/2;
	picWin = open('','','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',toolbar=no,location=no,directories=no,copyhistory=no,scrollbars=no,menubar=no,resizable=no,status=no'); 
	picWin.document.open();
	picWin.document.write('<html><head><title></title></head>'); 
	picWin.document.write('<body style="margin:0;padding:0;">'); 
	picWin.document.write('<img src="'+a+'" width="'+w+'" height="'+h+'" alt="Image '+n+'" onclick="window.close();" title="Click to close" style="cursor:pointer;" />');
	picWin.document.write('</body></html>'); 
	picWin.document.close(); 
}
