function checkLostPwordForm()
{
	with (window.document.frmLostPword) {
		if (isEmpty(txtEmail, 'Enter email address')) {
			return false;
		} else {
			submit();
		}
	}
}
