function img(link,ww,hh,title,flash) {
    w=window.open(link,'',(ww ? 'width='+ww+',' : '')+(hh ? 'height='+hh+',' : '')+'toolbar=0,scrollbars=0,left=100,top=100,resizable');
    if (link.indexOf('.html')==-1) {
    if (document.layers) title='';
    w.document.open();
    w.document.write('<html><head><title>'+title+'</title><meta http-equiv=Content-Type content="text/html; charset=windows-1251"></head>');
    if(flash=='1'){w.document.write('<body bgcolor=white marginwidth=0 marginheight=0 topmargin=0 leftmargin=0><table width=100% height=100% border=0 cellspacing=0 cellpadding=0><tr><td align=center><object type=application/x-shockwave-flash data='+link+' width='+ww+' height='+hh+'><param name=movie value='+link+' /></object></td></tr></table></body></html>');}
    if(flash=='0'|flash==undefined){w.document.write('<body bgcolor=white marginwidth=0 marginheight=0 topmargin=0 leftmargin=0><table width=100% height=100% border=0 cellspacing=0 cellpadding=0><tr><td align=center><a href=# onclick="window.close();" title="Закрыть окно" alt="Закрыть окно"><img src='+link+' width='+ww+' height='+hh+' border=0 alt="'+title+'"></a></td></tr></table></body></html>');}
    w.document.close();
    }
    w.focus();
}