function getSub(divObj)
{
	menu = document.getElementById(divObj)
	menu.style.left = "155px"
}

function dropSub(divObj)
{

	menu = document.getElementById(divObj)
	menu.style.left = "-155px"
}

function init()
{
	document.loginForm.username.focus()
}