// JavaScript Document



function boxIn(menu_item)
{
    document.getElementById('light').style.display='block';
    document.getElementById('fade').style.display='block';
    document.getElementById('username').focus();
		
}

function boxOut()
{
    document.getElementById('light').style.display='none';
    document.getElementById('fade').style.display='none';
	
}


function goTo()

{
    window.location="/loginValidate.jsp";
}

