/**
 * @author Jose H Ochoa
 */
function Form_ValidatorAdd(theForm){

    if (theForm.on1.value == "") {
        alert("Please enter school name");
        theForm.on1.focus();
        return false;
    }    
    if (theForm.on2.value == "") {
        alert("Please enter contact name");
        theForm.on2.focus();
        return false;
    }
    if (theForm.os1.value == "") {
        alert("Please enter Full address");
        theForm.os1.focus();
        return false;
    }
    if (theForm.os2.value == "") {
        alert("Please enter phone number");
        theForm.os2.focus();
        return false;
    }
    
    return true;
}
