function ShowMenu(_State)
{
	var _CurrentDiv = document.getElementById("sNav")

	if(_State)
	{
		_CurrentDiv.style.visibility = "visible";
	}
	else
	{
		_CurrentDiv.style.visibility = "hidden";
	}
}

function Countdown(_State)
{
	if(_State)
	{
		_Timer = self.setTimeout('ShowMenu(false);', 1000);
	}
	else
	{
		self.clearTimeout(_Timer);
	}
}