Logged In: YES
user_id=826251

You can't really test whether another window is created with
NUnitAsp since it really only tests server side code. What
you could do is just check that the attibute is set correctly
and treat the "onclick" event like a Golden Master, that is, it
doesn't need to be tested. So, i'd just use the following:

AssertEquals( "myJSFunction('parameterUsedByJSFunction')",
new AnchorTester( "someID", CurrentWebForm,
false ).GetAttributeValue( "onclick" ) );

To use logic like this, you would have to go into the
ControlTester class( i think ) and make the method public
instead of whatever scope it uses now. Recompile, and you
should be alright.

cliff