function beginat()
   {
   document.forms[0].txtGift.focus()
   return
   }
function checkform1(vargift)   {
   if (vargift == "") {
      alert("The Gift Amount field cannot be blank.");
      document.forms[0].txtGift.focus();
      return false;
   }
   var ValidChars = "0123456789";
   var IsNumber=true;
   var Char;
   for (i = 0; i < vargift.length && IsNumber == true; i++)  { 
      Char = vargift.charAt(i); 
      if (ValidChars.indexOf(Char) == -1)   {
         IsNumber = false;
         alert("The Gift Amount field must be numeric.");
         document.forms[0].txtGift.focus();
         }
   return IsNumber;
   }
return true   
}       

