/* this is the UI control for the login box */

function ShowLoginBox(){
	var LoginBox = document.getElementById("loginbox");
	var UserNameField = document.getElementById("UserNameField");
	LoginBox.style.visibility = "visible";
	UserNameField.focus();
}

function HideLoginBox(){
	var LoginBox = document.getElementById("loginbox");
	LoginBox.style.visibility = "hidden";
}