function pic(url,tit,w,h) {
 nw = w + 20;
 nh = h + 20;
 win = window.open('about:blank','pic','resizable=yes,left=10,top=5,width='+nw+',height='+nh, false);
with (win.document) {
 writeln('<html><head><title>BG UG : '+tit+'<\/title>');
 writeln('<\/head><body bgcolor="#E7EFFF">');
 writeln('<a href=# onclick="javascript:self.close();">');
 writeln('<img src="'+url+'" width='+w+' height='+h+' border=0 alt="'+tit+'"><\/a>');
 writeln('<\/body><\/html>');
 close();
}
}
function okno(url) {
 win = window.open(url,'okno','scrollbars=yes,resizable=yes,left=10,top=5,width=400,height=300', false);
}
