//master function to keep track of the process //
function checkform() {
  var ftest = true;
  if (  checknum(document.Tform.AccountNumber,"your Account Number") && 
        checkitem(document.Tform.Name,"your Name") &&
		checkemail(document.Tform.Email," your Email") && 
        checkors()
        )
     ftest = true;
  else {
    ftest = false;
  }
  return ftest;
 }

//following is wired to specific elements
function checkors()  {
   var sendform = true;
  if (checkitem(document.Tform.tbox1,"") == false && checkitem(document.Tform.tbox2,"") == false )  {
   sendform = false;
   alert("All fields are required...");
   document.Tform.tbox1.focus();
 }  
 return sendform;
}
