var col=0;
var popup=new Array();
function open_msg(msg,w,h)
{
  if (col>0) {popup[col-1].close();}
  popup[col]=window.open('','tray','directories=0,height='+h+',location=0,menubar=0,status=0,toolbar=0,scrollbars=1,resizable=1,width='+w);
  popup[col].document.open();
  popup[col].document.write("<html><head><title>Message</title><link rel='stylesheet' href='styles.css' type='text/css'></head><body topmargin=5 leftmargin=5 marginheight=5 marginwidth=5 bgcolor=#FFFFFF><p>"+msg+"</p><p align='right'><a href='javascript:self.close();'>x close window x</a></p></body></html>");
  popup[col].focus();
  col=col+1;
  }
function remlogexplain()
{
 open_msg ('<h3>&quot;Remember me&quot;</h3><p>For your convenience you can check the option &quot;Remember me&quot;. You will not have to go through the process of authorization every time when you want to take advantage of services provided by our site. The server will identify you automatically.<br><br><b>Attention</b>: do not use this option if you access our site from different computers, or your computer is accessible by other people.</p>', 300, 230);
}