// JavaScript Document

function ShowContent(show){
	document.getElementById(show).style.visibility = "visible";
	document.getElementById(show).style.display = "block";

}

function HideContent(hide){
	document.getElementById(hide).style.visibility = "hidden";
	document.getElementById(hide).style.display = "none";
}
