    <!--
function showOriginal(oElement, sOriginalUrl)
{
    if (oElement.largeImg == undefined)
    {
        oElement.largeImg = oElement.parentNode.getElementsByTagName("img")[0];
        oElement.largeImg.src = sOriginalUrl;

        var thumbWidth = oElement.width;
        var thumbHeight = oElement.height;
        oElement.largeImg.onload = function()
        {
            this.style.marginLeft = -(this.width-thumbWidth)/2 + "px";
            this.style.marginTop = -(this.height-thumbHeight)/2 + "px";
        };
        oElement.largeImg.onmouseout = function()
        {
            this.style.display = "none";
        };
    }
    oElement.largeImg.style.display = "block";
};
// -->