IE=navigator.appName=="Netscape" && !document.getElementById?false:true;

function zoom(src,w,h) {
        html='<html><head><title>Презентация Книги Натаниэля</title>'+'</head><body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onLoad="top.window.focus()">'+
        '<a href="#" onClick="window.close();"><img src="'+src+'" border=0 alt="" width='+w+' height='+h+'></a></body></html>';
  
        if (IE) {
        	w = +w+10;
	        h = +h+29;   
win=window.open('','acwin','width='+w+',height='+h+',resizable=no'+',top=0'+'scrollbars=yes');
                win.document.open();
                win.document.write(html);
                win.document.close(); 
                win.resizeTo(w,h);

        
        }
        else {
  
win=window.open(src,'acwin','width='+w+',height='+h+',resizable=yes'+',top=0');
        }
                win.document.open();
                win.document.write(html);
                win.document.close(); 
                win.resizeTo(w,h);
          }

