function validatePrimaryPhone(oSrc, args) {
    p1 = document.getElementById("ctl00_contentMain_txtPrimaryPhone1");
    p2 = document.getElementById("ctl00_contentMain_txtPrimaryPhone2");
    p3 = document.getElementById("ctl00_contentMain_txtPrimaryPhone3");
    
    if ((p1.value.length != 3) || (p2.value.length != 3) || (p3.value.length != 4)) {
        args.IsValid = false;
    } else {
        args.IsValid = true;
    }
    
    //need to check if numeric
}

function txtPrimaryPhone1_keyUp(p1) {
    p2 = document.getElementById("ctl00_contentMain_txtPrimaryPhone2");
    
    if (p1.value.length == 3) {
        p2.focus();
    }
}

function txtPrimaryPhone2_keyUp(p2) {
    p3 = document.getElementById("ctl00_contentMain_txtPrimaryPhone3");
    
    if (p2.value.length == 3) {
        p3.focus();
    }
}

function txtPrimaryPhone3_keyUp(p3) {
}
