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