function showPics(count)
{
	var el = document.getElementById('MorePics' + count);
	var anchor = document.getElementById('PicLink' + count);
	el.style.display = (el.style.display == "block") ? "none" : "block";
	if (anchor.innerHTML == "View more pictures")
	{
		anchor.innerHTML = "Hide pictures"
	}
	else
	{
		anchor.innerHTML = "View more pictures";
	}
}

