// JavaScript Document
function showPic(whichpic) {
if (!document.getElementById("placeholder")) return true;
var source = whichpic.getAttribute("href");
var placeholder = document.getElementById("placeholder");
if (placeholder.nodeName != "IMG") return true;
placeholder.setAttribute("src", source);
if (!document.getElementById("description")) return false;
var text = whichpic.getAttribute("title") ? whichpic.getAttribute("title") : "";
var description = document.getElementById("description");
description.firstChild.nodeValue = text;
var picbox = document.getElementById("picbox");
var picwidth = whichpic.getAttribute("alt") ? whichpic.getAttribute("alt") : "";
picbox.setAttribute("width", picwidth);
return false;
}


	
