<!--
function checkForm ( theForm )
{
	// Check login name.
	if ( !checkHasValue(theForm.mlsid,"TEXT"))
		if ( !onError( theForm, theForm.mlsid, theForm.mlsid.value, 
			"Please enter your RatePlug, MLS or Lender ID." ) )
			return false;
	
	// Check password confirmation.
	if ( !checkHasValue(theForm.password,"TEXT"))
		if ( !onError( theForm, theForm.password, theForm.password.value, 
			"Please enter your RatePlug password." ) )
			return false;

	return true;
}
// -->
