IE=navigator.appName=="Netscape" && !document.getElementById?false:true;

function zoom(src,w,h) {
        html='<html><head><title>Иллюстрация</title>'+'</head><body bgcolor=#000000 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onload="focus()">'+
		'<a href="#" onClick="window.close();"><img src="'+src+'" border=0 title="Чтобы закрыть картинку &#151; кликните в неё" width='+w+' height='+h+'></a><img src="http://active.mns.ru/banner/show.php"/ border=0 width=1 height=1 alt=""></body></html>';
  
        if (IE) {
        	w = +w+10;
	        h = +h+29;   
win=window.open('','_blank','width='+w+',height='+h+',resizable=no'+',top=50'+'scrollbars=yes');
                win.document.open();
                win.document.write(html);
                win.document.close(); 
                win.resizeTo(w,h);

        
        }
        else {
  
win=window.open(src,'_blank','width='+w+',height='+h+',resizable=yes'+',top=50');
        }
                win.document.open();
                win.document.write(html);
                win.document.close(); 
                win.resizeTo(w,h);
          }
