//<script>
function showNextBlockContent(obj)
{
    hObj = obj.nextSibling;
    if (hObj.style.display == "" || hObj.style.display == "none")
    {
        hObj.style.display = "block";
    }
    else
    {
        hObj.style.display = "none";
    }
}
function showLargePhoto(src)
{
    target = document.getElementById("galleryLargePhoto");
    target.src = src;
    target.style.display = "block";
}
