function ShowHint(title, header, text)
{
  w_hint = open("", title, "width=300,height=200,status=no,toolbar=no,menubar=no");
  w_hint.document.open();
  w_hint.document.writeln('<html><head><title>' + title + '</title></head><body>');
  w_hint.document.writeln('<center><h2>' + header + '</h2></center>');
  w_hint.document.writeln(text);
  w_hint.document.writeln('</body></html>');
  w_hint.document.close();
  w_hint.document.bgColor = "dadd9a";
}

function ShowPict(title,src)
{
  w_pict = open("", 'title', "width=400,height=400,menubar=no,status=no,toolbar=no,resizable=yes");
  w_pict.document.open();
  w_pict.document.writeln('<html><head><title>' + title + '</title></head><body BGCOLOR="#dadd9a">');
  w_pict.document.writeln('<img src= ' + src + ' border=0 ALIGN="MIDDLE"' + 
  'onLoad = "window.resizeTo(window.document.images[0].width + 28, window.document.images[0].height + 48)">');
  w_pict.document.writeln('</body></html>');
  w_pict.document.close();
  w_pict.focus();
}

function ShowUsers()
{
  w_users = open("http://polisma.ru/cgi-bin/vchat/chatsu.cgi?action=myusers", 
    '', "width=130,height=120,menubar=no,status=no,toolbar=no,resizable=yes");
//  w_users.focus();	
}