/// JavaScript Document 




function showPic(whichpic) {
if (!document.getElementById("placeholder")) return true;
var source = whichpic.getAttribute("href");
var placeholder = document.getElementById("placeholder");
placeholder.setAttribute("src",source);
if (!document.getElementById("photocaption")) return false;
if (whichpic.getAttribute("title")) {
var text = whichpic.getAttribute("title");
} else {
var text = "";
}
var photocaption = document.getElementById("photocaption");
if (photocaption.firstChild.nodeType == 3) {
photocaption.firstChild.nodeValue = text;
}
return false;
}



