There's actually another way to do this:

code:
$domain = "domain"
$userid = "administrator"
$obj = GetObject("WinNT://$domain/$userid,user")
If @error = 0
"Valid User"
Else
"Not a User on the domain specified"
Endif
$obj = ""

This assumes you have administrator access to the domain you specify.

Brian