<!-- Begin


if (document.images) {

// top
topnexton = new Image(120, 55);
topnexton.src = "/picts/topnexton.gif"

topnextoff = new Image(120, 55);
topnextoff.src = "/picts/topnextoff.gif"

toppreviouson = new Image(120, 55);
toppreviouson.src =  "/picts/toppreviouson.gif"
toppreviousoff = new Image(120, 55);
toppreviousoff.src = "/picts/toppreviousoff.gif"

//bottom
bottomnexton = new Image(120, 55);
bottomnexton.src = "/picts/bottomnexton.gif"

bottomnextoff = new Image(120, 55);
bottomnextoff.src = "/picts/bottomnextoff.gif"

bottompreviouson = new Image(120, 55);
bottompreviouson.src =  "/picts/bottompreviouson.gif"
bottompreviousoff = new Image(120, 55);
bottompreviousoff.src = "/picts/bottompreviousoff.gif"

}

function img_act(imgName) {
if (document.images) {
imgOn = eval(imgName + "on.src");
document [imgName].src = imgOn;
}
}

function img_inact(imgName) {
if (document.images) {
imgOff = eval(imgName + "off.src");
document [imgName].src = imgOff;
}
}

// -->