// JavaScript Document
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>'+'<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'+',left=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'+',left=0');
}
win.document.open();
win.document.write(html);
win.document.close(); 
win.resizeTo(w,h);
}


