function okno(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>'+tit+'<\/title>');
 writeln('<\/head><body bgcolor="#5D5D5D">');
 writeln('<a href=# onclick="javascript:self.close();">');
 writeln('<img src="'+url+'" width='+w+' height='+h+' border=0 alt="'+tit+'"><\/a>');
 writeln('<\/body><\/html>');
 close();
}
}
