Ok, well... I'm not an UltraDev user (which begs the question why do I peruse this forum), so I'll have to tell you how to do it manually. If you crack open your source code, you will need to find a few pieces of information:
(1) the name of your form, which will be in the form tag. If it doesn't have one, give it one -- I usually just call mine theForm
(2) the name of your first password box --
(3) you're going to need to add the second password box if it isn't already there, and then get the name of it, as well.
You then go to your form tag, and add the onSubmit action like I posted above:
<form name=theForm method=post action=somePage.asp onSubmit="return checkPass();">
So that when the submit button is pressed, that function will run before the form is actually submitted...
You then might have to modify the function that I posted in order to reflect the name of your form and the elements that you want to compare.
And there you have it... form validation.

Paul Prewett