// JavaScript Document
function showPic(whichpic){
	var source = whichpic.getAttribute('href');
	document.getElementById('placeholder').setAttribute('src', source);
	//var text = whichpic.getAttribute('title');
	//document.getElementById('caption').firstChild.nodeValue	= text;
}
