/*
	File:		Login.Js
	Purpose:    Client Side Validation for Login.Cfm
	Author:     Michael Mercieca
	Created: 	July 24, 2000 
*/
function Login()
	{
	if (isEmpty(document.forms[0].txtUserName.value))
		window.alert("Please enter your user name.");
	else if (isEmpty(document.forms[0].txtPassword.value))
		window.alert("Please enter your password.");
	else
		document.forms[0].submit();
	}			
