// JavaScript Document

function showPic(whichpic) {

	var source = whichpic.getAttribute('href');

	var placeholder = document.getElementById('placeholder');

	placeholder.setAttribute('src',source);

	var text = whichpic.getAttribute('title');

	var year = whichpic.getAttribute('year');

	var description = document.getElementById('description');

	description.firstChild.nodeValue = text + " (" + year + ")";
	return false;

}

