// JavaScript Document
    function  validate()
    {
    var t1;
    t1=document.getElementById ('txtuser').value;
    var t2=document.getElementById ('txtpwd').value;
   if (t1=='admin' && t2=='admin')
   {
   lblmsg.innerText ="";
    window.open('http://erodeima.com/members.html');
   }
   else
   {
  lblmsg.innerText ="Invalid Username and Password";
   }
    }
