//master function to keep track of the process //
function checkform() {
  var ftest = true;
  if (  checkitem(document.Tform.first_name,"your First Name") && 
		checkitem(document.Tform.last_name,"your Last Name") && 
		checkitem(document.Tform.company_name,"your Company Name") &&
		checkitem(document.Tform.job_title,"your Job Title") &&
		checkemail(document.Tform.email,"your Email Address") &&
		checkitem(document.Tform.comments,"your Comments") &&
        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;
}

