<!--
function FormValidatorc(form1)
{
      if (form1.kind.value == 0)
  {
    alert("Please select the kind of package!");
    form1.kind.focus();
    return (false); //LIKE "EXIT SUB" IN VISUAL BASIC
  }

      if (form1.bank.value == 0)
  {
    alert("Please select your 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); //LIKE "EXIT SUB" IN VISUAL BASIC
  }

      if (form1.no.value == "")
  {
    alert("please enter your Bill's Number of Exchange ");
    form1.no.focus();
    return (false); //LIKE "EXIT SUB" IN VISUAL BASIC
  }
  if (isNaN(form1.no.value))
  {
    alert("Please enter Numbers!");
    form1.no.focus();
    return (false); //LIKE "EXIT SUB" IN VISUAL BASIC
  }

  return (true);
}
// -->
