// JavaScript Document


function Show(id)
{
	document.getElementById(id).style.display = "inline";
}

function Hide(id)
{
   document.getElementById(id).style.display = "none";
}
