function  showPic(whichpic) {
	var source = whichpic.getAttribute("href");
	var placeholder = document.getElementById("insert");
	placeholder.setAttribute("src", source);
	var text = whichpic.getAttribute("title");
	var description = document.getElementById("caption");
	description.firstChild.nodeValue = text;
}