<!-- 
// Validation Scripts for the field forms

function validdata(theform)
{
  if (theform.first_name.value == "")
     {
     alert("Kindly enter your First Name!");
     theform.first_name.focus();
     return false;
     }
  if (theform.last_name.value == "")
     {
     alert("Kindly enter your Last Name!");
     theform.last_name.focus();
     return false;
     }
  if (theform.email.value == "")
     {
     alert("Kindly enter your Email!");
     theform.email.focus();
     return false;
     }
  if (theform.subject.value == "")
     {
     alert("Kindly enter your Prayer's Subject!");
     theform.subject.focus();
     return false;
     }     
  if (theform.prayer_request.value == "")
     {
     alert("Kindly enter your Prayer Request!");
     theform.prayer_request.focus();
     return false;
     }          
     return true;
}
// -->