﻿// JScript File

function showPic(imgName,title) {
    theDiv=document.getElementById("bigPict");
    theDiv.innerHTML=title + "<br /><a href='javascript:closePic()'><img src='images/" + imgName +"' border=0 /></a>"
    theDiv.style.visibility="visible"
}
function closePic() {
    theDiv=document.getElementById("bigPict")    
    theDiv.style.visibility="hidden"
}    
