function checkCustomerForm()
{
	with (window.document.frmLogin) {
		if (isEmpty(username, 'Enter user name')) {
			return;
		} else if (isEmpty(password, 'Enter password')) {
			return;
		} else {
			submit();
		}
	}
}
