



function expand(sId) {
        document.getElementById(sId).style.display = "";
}

function collapse(sId) {
        document.getElementById(sId).style.display = "none";
}

function toggle(sId) {
        var oNode = document.getElementById(sId);
        oNode.style.display = (oNode.style.display == "none" ? "" : "none");
}

window.onload = function () {
        document.getElementById("ulMain").style.height = document.getElementById("divPageBody").offsetHeight;
}

function showSlideshowPopup(strURL) {
    window.open(strURL, (new Date()).getTime(), "width=895,height=700,resizable=yes,scrollbars=yes"); 
}
