
<!--
if (document.images) {



indexon = new Image(51, 10);
indexon.src = "../ow/mn01x.gif";
indexoff = new Image(51, 10);
indexoff.src = "../ow/mn01.gif";

archiveon = new Image(51, 11);
archiveon.src = "../ow/mn04x.gif";
archiveoff = new Image(51, 11);
archiveoff.src = "../ow/mn04.gif";

tophon = new Image(51, 11);
tophon.src = "../ow/mn05x.gif";
tophoff = new Image(51, 11);
tophoff.src = "../ow/mn05.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;
}
}

//-->














