// JavaScript Document

function showPic (whichpic)
{
	if (document.getElementById) 
	{
		document.getElementById('placeholder').src = whichpic;
		window.location.hash = undefined;
		window.location.hash = "#";
	} 
	else
	{
		return true;
	}
}
