<!-- Begin


if (document.images) {


nexton = new Image();
nexton.src = "picts/nexton.bmp"

nextoff = new Image();
nextoff.src = "picts/nextoff.bmp"

backon = new Image();
backon.src = "picts/backon.bmp"

backoff = new Image();
backoff.src = "picts/backoff.bmp"

indexon = new Image();
indexon.src = "picts/indexon.bmp"

indexoff = new Image();
indexoff.src = "picts/indexoff.bmp"



nexton = new Image();
nexton.src = "picts/float-home-on.bmp"

nextoff = new Image();
nextoff.src = "picts/float-home.bmp"




}

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;
}
}

// -->