<!--

        if (document.images) {
img1off = new Image();
img1off.src = "../../graphics/buttons/next_pic_off.gif";
img2off = new Image();
img2off.src = "../../graphics/buttons/previous_pic_off.gif";
img3off = new Image();
img3off.src = "../../graphics/buttons/to_pic_index_off.gif";
img4off = new Image();
img4off.src = "../../graphics/buttons/circle_to_pic_index_off.gif";
img5off = new Image();
img5off.src = "../../graphics/buttons/to_pic_index2_off.gif";


img1on = new Image();
img1on.src = "../../graphics/buttons/next_pic_on.gif";
img2on = new Image();
img2on.src = "../../graphics/buttons/previous_pic_on.gif";
img3on = new Image();
img3on.src = "../../graphics/buttons/to_pic_index_on.gif";
img4on = new Image();
img4on.src = "../../graphics/buttons/circle_to_pic_index_on.gif";
img5on = new Image();
img5on.src = "../../graphics/buttons/to_pic_index2_on.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");
}
}

// End hiding script from old browsers -->



