function showLogin()
{
	document.getElementById('authLogon').style.display = 'block';
	return false;
}

function hideLogin()
{
	document.getElementById('authLogon').style.display = 'none';
	return false;
}


