function login_form_check()
{
// Determine if the "User ID" is present.
	if (document.bhccu.user_id.value.length == 0)
	{
		alert("Please enter your user name.");
		document.bhccu.user_id.focus();
		return false;
	}
// Determine if the "Password" is present.
	if (document.bhccu.password.value.length == 0)
	{
		alert("Please enter your password.");
		document.bhccu.password.focus();
		return false;
	}
// All tests passed. Allow the "Employee Login Request" to be submitted.
	document.bhccu.action="./employee/verify_login.asp";
	return true;
}
