function noaccess()
{
   window.right.src="denied.html";
}
function access()
{
   window.open("members.html", "");
}
function checkpass()
{
   var name="";
   var passwd="";
   name=document.CheckPass.name.value;
   passwd=document.CheckPass.parol.value;
   if(name=="igrok")
     {
     if(passwd=="chto?")
       {
       document.CheckPass.name.value="Ne smotri";
       document.CheckPass.parol.value="syuda";
       window.open("members.html", "", "toolbar=yes,menubar=no,locationbar=no,status=yes");
       }
     else
       {
       parent.right.window.location.href="denied.html";
       }
     }
   else
     {
     parent.right.window.location.href="denied.html";
     }
} 
