function _LD_selectField(aTextField)
{
	aTextField.select();
	return true;
} 
function _LD_load()
{
	document.li.username.focus();
} 
function LD_CheckForm(aLoginForm)
{
	if (document.li.username.value == "")
	{
		alert("Please enter Username and Password");
		document.li.username.focus();
		return false;
	}
	else
	{
		if (document.li.password.value == "")
		{
			alert("Please enter Username and Password");
			document.li.password.focus();
			return false;
		}
	}
	return true;
} 
