function show(stringId)
{
		element = document.getElementById(stringId);
		element.style.visibility = "visible";

};

function hide(stringId)
{
		element = document.getElementById(stringId);
 		element.style.visibility = "hidden";
};

