<!-- hide this script from non-javascript-enabled browsers
if (document.images) {
teamroster_F1 = new Image(71,33); teamroster_F1.src = "../Graphics/teamroster.gif";
teamroster_F2 = new Image(71,33); teamroster_F2.src = "../Graphics/teamroster_F2.gif";
teamschedule_F1 = new Image(71,33); teamschedule_F1.src = "../Graphics/teamschedule.gif";
teamschedule_F2 = new Image(71,33); teamschedule_F2.src = "../Graphics/teamschedule_F2.gif";
teamstandings_F1 = new Image(69,33); teamstandings_F1.src = "../Graphics/teamstandings.gif";
teamstandings_F2 = new Image(69,33); teamstandings_F2.src = "../Graphics/teamstandings_F2.gif";
teamplayoffs_F1 = new Image(75,33); teamplayoffs_F1.src = "../Graphics/teamplayoffs.gif";
teamplayoffs_F2 = new Image(75,33); teamplayoffs_F2.src = "../Graphics/teamplayoffs_F2.gif";

}



/* 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 -->



