// gallery
function showPic(whichpic)
{
	if(document.getElementById)
	{	
		var largepic = document.getElementById('placeholder');
		largepic.src = whichpic.href;
		
		if (whichpic.title) {
			largepic.alt = whichpic.title;
		}
		else
		{
			largepic.alt = whichpic.childNodes[0].nodeValue;
		}
		return false;
	}
	else
	{
		return true;
	}
}
