
function enlarge(imgN, winW, winH) {
var posLet = '';
if (document.all || document.layers || document.createTextNode) {
posX = Math.round((screen.width - winW) / 2);
posY = Math.round((screen.height - winH) / 2);
posLet = (document.all)? 'left='+posX+',top='+posY : 'screenX='+posX+',screenY='+posY;
}
fotoWindow = window.open('','_blank','menubar=no,toolbar=no,scrollbars=no,status=yes,width='+winW+',height='+winH+','+posLet);
fotoWindow.document.open();
fotoWindow.document.write('<html><head><title>Дитячий центр &laquo;Сонячне світло&raquo;<\/title><\/head>');
fotoWindow.document.write('<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">');
fotoWindow.document.write('<img src="'+imgN+'" width="'+winW+'" height="'+winH+'" /><\/body><\/html>');
fotoWindow.document.close();
fotoWindow.focus();
}


