<!-- Begin


if (document.images) {


nexton = new Image();
nexton.src = "picts/nexton.gif"

nextoff = new Image();
nextoff.src = "picts/nextoff.gif"

prevon = new Image();
prevon.src = "picts/prevon.png"

prevoff = new Image();
prevoff.src = "picts/prevoff.png"


}

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;
}
}

// -->