function zoomItem(imgName, winWidth, winHeight, winTitle) {
var posCode = '';
if (document.all || document.layers || document.createTextNode) {
posX = Math.round((screen.width - winWidth) / 2);
posY = Math.round((screen.height - winHeight) / 2);
posCode = (document.all)? 'left='+posX+',top='+posY : 'screenX='+posX+',screenY='+posY;
}
photoWindow = window.open('','_blank','menubar=no,toolbar=no,scrollbars=no,status=yes,width='+winWidth+',height='+winHeight+','+posCode);
photoWindow.document.open();
photoWindow.document.write('<html><head><title>ÎÀÎ Çàâîä &laquo;ÌèÊÑ&raquo; &#150; '+winTitle+'<\/title><\/head>');
photoWindow.document.write('<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">');
photoWindow.document.write('<img src="'+imgName+'" width="'+winWidth+'" height="'+winHeight+'" /><\/body><\/html>');
photoWindow.document.close();
photoWindow.focus();
}
