﻿// JScript File
function ShowPicture(image) {

document.getElementById('ctl00_cphPageContent_PhotoGallery1_pnlThumbs').className="HideDiv";
document.getElementById('ctl00_cphPageContent_PhotoGallery1_pnlFull').className="pnlFull ShowDiv";

}


function HidePicture() {

document.getElementById('ctl00_cphPageContent_PhotoGallery1_pnlThumbs').className="pnlThumbs";
document.getElementById('ctl00_cphPageContent_PhotoGallery1_pnlFull').className="HideDiv";

}

function SetPicture(image)
   {
var str=image.src;

document.getElementById('ctl00_cphPageContent_PhotoGallery1_imgFull').src=str.replace(/thumbs/i,"");
   }

