<!--
function FormValidatorc(form1)
{
      if (form1.bank.value == 0)
  {
    alert("Please select the bank!");
    form1.bank.focus();
    return (false); //LIKE "EXIT SUB" IN VISUAL BASIC
  }
  	  if (form1.amount.value== "")
  {
    alert("Please enter the amount of the bill!");
    form1.amount.focus();
    return (false);
	}

  if (form1.no.value== "")
  {
    alert("Please enter the number of the bill!");
    form1.no.focus();
    return (false);
	}
  return (true);
}
// -->
