<!--//
function BalancePaid(s)
{
 var un;
 un = prompt("Please enter the password that was provided to you in the deposit Payment receipt E-mail, or in your Switch-approval email. For any questions please call 212 929-3302.", "");
 if (un.toLowerCase() == s.toLowerCase()) 
 {
  return 1;
 } else {
  return 0;
 }
}

//-->

