
function SetUpLogon()
{	
/*
	var login = document.getElementById('ucLogin_loggedIn');
	if (login != null)
	{
		login.style.display = 'block';
	}

	var NonJScript = document.getElementById('NonJScriptLogin');
	if (NonJScript != null)
	{
		NonJScript.style.display = 'none';
	}
*/
}

function HideSelectButton()
{
	SetUpLogon();
	var SelectButtonLayer = document.getElementById('DropDownSelectLayer');
	SelectButtonLayer.style.display = 'none';
}
function DropDownSelectSubmit()
{
	document.Home.submit();
}

