﻿function ShowKoopjesImage(koopjesImage)
{
    var img = document.getElementById('LargeImage');
    var pnl = document.getElementById('LargeImagePanel');
    img.src = koopjesImage;
}

function ResizePanel()
{
    var img = document.getElementById('LargeImage');
    var pnl = document.getElementById('LargeImagePanel');
    var tbl = document.getElementById('KoopjesListTable');
//    alert(img.width);
    pnl.style.width = img.width + 'px';
    pnl.style.height = (img.height + 30) + 'px';
    pnl.style.left = (tbl.clientWidth / 2) - (img.width / 2) + 'px';
    //    alert((tbl.clientWidth / 2) - (img.width / 2));
    pnl.style.visibility = 'visible';

}

function HideKoopjesImage()
{
    document.getElementById('LargeImagePanel').style.visibility = 'hidden';
    document.getElementById('LargeImage').src = '';
}


