<!--
if (document.images){

    dot01on = new Image( ); dot01on.src = "i/boxDots.gif";
    dot01off = new Image( ); dot01off.src = "i/boxBg.gif";

    dot02on = new Image( ); dot02on.src = "i/boxDots.gif";
    dot02off = new Image( ); dot02off.src = "i/boxBg.gif";

    dot03on = new Image( ); dot03on.src = "i/boxDots.gif";
    dot03off = new Image( ); dot03off.src = "i/boxBg.gif";

	dot04on = new Image( ); dot04on.src = "i/boxDots.gif";
    dot04off = new Image( ); dot04off.src = "i/boxBg.gif";

	dot05on = new Image( ); dot05on.src = "i/boxDots.gif";
    dot05off = new Image( ); dot05off.src = "i/boxBg.gif";
}

function imgAct(imgName) {
    if (document.images) {
        document[imgName].src = eval(imgName + "on.src");
    }
}

function imgInact(imgName){
    if (document.images) { 
        document[imgName].src = eval(imgName + "off.src");
    }
}

//-->