<!-- hide this script from non-javascript-enabled browsers
/* if (document.images) {
passdown_off = new Image(250,250); passdown_off.src = "images/i_straighttalk.jpg";
passdown_on = new Image(250,250); passdown_on.src = "images/i_default.jpg";
svc_off = new Image(58,56); svc_off.src = "images/svc1.jpg";
svc_on = new Image(58,56); svc_on.src = "images/svc2.jpg";
eng_off = new Image(58,56); eng_off.src = "images/eng1.jpg";
eng_on = new Image(58,56); eng_on.src = "images/eng2.jpg";
man_off = new Image(58,56); man_off.src = "images/man1.jpg";
man_on = new Image(58,56); man_on.src = "images/man2.jpg";
} */
/* Function that swaps images. */

function di20(id, newSrc) {
    var theImage = FWFindImage(document, id, 0);
    if (theImage) {
        theImage.src = newSrc;
    }
}

/* Functions that track and set toggle group button states. */

function FWFindImage(doc, name, j) {
    var theImage = false;
    if (doc.images) {
        theImage = doc.images[name];
    }
    if (theImage) {
        return theImage;
    }
    if (doc.layers) {
        for (j = 0; j < doc.layers.length; j++) {
            theImage = FWFindImage(doc.layers[j].document, name, 0);
            if (theImage) {
                return (theImage);
            }
        }
    }
    return (false);
}

// stop hiding -->
