//<script>
var _contentAreaAction = false;
function showHideContentArea(src)
{
    target = document.getElementById("scroll-cont");
    content = document.getElementById("pane1");
    
    if (_contentAreaAction == false)
    {
        target.style.marginLeft = "-262px";
        target.style.clip = "rect(auto auto auto 354px)";
        src.childNodes[0].src = "/images/design/scroll-cont-hide2.gif";
        content.style.display = "none";
        
        extend = document.getElementById("largePhotoArea");
        if (extend != null)
        {
            extend.style.display = "none";
        }
        _contentAreaAction = true;
    }
    else
    {
        target.style.marginLeft = "92px";
        target.style.clip = "rect(auto auto auto auto)";
        src.childNodes[0].src = "/images/design/scroll-cont-hide1.gif";
        content.style.display = "block";
        _contentAreaAction = false;
    }
}

function showHideExtendArea()
{
    target = document.getElementById("largePhotoArea");
    target.style.display = "none";
}
function showLargePhoto(url)
{
    panel = document.getElementById("largePhotoArea");
    image = document.getElementById("largePhotoAreaImage");
    panel.style.display = "block";
    image.src = url;
}

function setTabPosition()
{
    var lastTab = document.getElementById("menuTabLast");
    var activeTab = document.getElementById("menuTabActive");
    if (lastTab != null)
    {
        lastTab.swapNode(activeTab);
    }
}
