// batch validation contact
function validateForm(form) {
   
    global_flag = 'safe';
   
    email_personal = isEMailAddr(form.email);
    name = isNotEmpty(form.name, true);
    message = isNotEmpty(form.message, true);

   
    if(global_flag == 'safe') {
        return true;
    } else {
        alert('To process the form \n' + '* Please correct the highlighted fields \n');
        return false;
    }
   
}