
function validateFields(){
    var errorMsg = "";
    var shallWeContinue;
       //This variable stays true until a test fails.
    shallWeContinue = true; //If it becomes false the remaining tests will not run
    if(shallWeContinue){

    }//end if
   //"yes" has been changed to false and no has been changed to true
    if(shallWeContinue){shallWeContinue = fieldProfiler('frmApplyOnline','Accept',document.forms['frmApplyOnline'].Accept.value,'Terms','',true);}
 
  
}//end function call

function captchaPrevalidation(formName, givenValue)
{
    if(givenValue ==  "")
    {
        alert("Please enter captcha image information");
        return false;
    }
    return true;
}