// JavaScript Document

function post_password()
{ 
 document.frmlog.submit();
}

function confirm_pass(confrm,passval)
{
  if (confrm == "True" && passval.length > 0)
   {
     window.location="client_setup.php";
   }  
  if (confrm == "False" && passval.length > 0)
   {
     alert("Access Denied !!!");
   } 
}

