function LoginLoad()
{
	var LoginID = document.getElementById("LoginID").value;

	if(LoginID.length<1)
	{
		document.getElementById("LoginID").focus();
	}
	else
	{
		document.getElementById("Password").focus();
	}
}

function CheckForm()
{
	if(form1.LoginID.value.length < 1)
	{
		alert("Login ID can't be blank.");
		form1.LoginID.focus();
		return false;
	}

	if(form1.Password.value.length <1)
	{
		alert("Password can't be blank.");
		form1.Password.focus();
		return false;
	}

	return true;
}

