function ShowHideElement(sId)
{
	pElement = document.getElementById(sId);
	if (pElement.style.display == "none")
		pElement.style.display = "block";
	else
		pElement.style.display = "none";
}