function findByID(b) {
    var a;
    if (document.getElementById) {
        a = document.getElementById(b);
    } else {
        if (document.all) {
            a = document.all[b];
        }
    }
    return a;
}
