
function FullImage(image)
{
    var nwin = window.open(image.getAttribute("realSrc"));
    nwin.focus();
}

function PreviewImage(image, ctlName, imageSrc, blockIndex)
{
    var img = document.getElementById("picasaImage"+blockIndex);
        img.src = imageSrc;
        img.setAttribute('title', image.getAttribute("title"));
        img.setAttribute('realSrc', image.getAttribute("realSrc"));
        
    var imgDetails = document.getElementById("imageDetails"+blockIndex);
        imgDetails.innerHTML = "<h3>" + image.getAttribute("title") + "</h3>";
}