// JavaScript Document - http://alistapart.com/articles/imagegallery

function showPic (whichpic)
{
	if (document.getElementById) {
		document.getElementById('placeholder').src = whichpic.href;

		return false;
	} else {
		return true;
	}
}
