function imag(src, width, height, height2, target, scrolls)
{
 form=src.substr(src.length-3,src.length);
 w=window.open('',target,'width='+width+',height='+height2+',hotkeys=1,resizable=no,scrollbars='+scrolls);
 w.document.write('<html><head><LINK href="stsc/styles.css" rel=STYLESHEET type=text/css></head><body marginwidth=0 marginheight=0 style="margin:0 0 0 0; padding:0 0 0 0;">');
 w.document.write('<IMG src="'+src+'" alt="" width="'+width+'" height="'+height+'">');
 w.document.write('<p><center><input type="button" name="close" value="Закрыть" class="b_stn" onfocus="blur()" onclick="javascript:self.close()"></center></p>');
 w.document.write("</body></html>");
 w.focus();
 w.document.close();
}
