

var images = new Array();
images[0] = "show_files/Slide0001.gif";//"show_files/Slide01.jpg";
images[1] = "show_files/Slide0002.gif";//"show_files/Slide02.jpg";
images[2] = "show_files/Slide0003.gif";//"show_files/Slide03.jpg";
images[3] = "show_files/Slide0004.gif";//"show_files/Slide04.jpg";
images[4] = "show_files/Slide0005.gif";//"show_files/Slide05.jpg";
images[5] = "show_files/Slide0006.gif";//"show_files/Slide06.jpg";
images[6] = "show_files/Slide0007.gif";//"show_files/Slide07.jpg";
//images[7] = "show_files/Slide08.jpg";
//images[8] = "show_files/Slide09.jpg";
//images[9] = "show_files/Slide10.jpg";
var index = 0;

function WindowLoaded(evt)
{
    document.body.onselectstart = function () {
        return false;
    };
}
function Step(i)
{
    GoTo(index + i)
}
function GoTo(newIndex)
{
    if(newIndex >= 0 && newIndex < images.length)
    {
        index = newIndex;
        document.Slideshow.src = images[index];
    }
}



function unhide(divID, txtmore, txtless) {
    var item = document.getElementById(divID);
    if (item) {
        item.className=(item.className=="hidden")?"unhidden":"hidden";
        if (item.className == "hidden"){
            document.getElementById(divID + "span").innerHTML = txtmore;
        } else {
            document.getElementById(divID + "span").innerHTML = txtless;
        }
    }
}

