Has anybody used UrchinTracker in their Flash files

I found this reference page
http://www.google.com/support/urchin45/bin/answer.py?answer=28685&topic=7377

I would like to track on rollovers and on releases

The rollover uses loadMovieNum to load a subSWF. The on release is for getURL. Per the example in the link above, would it be something like this?


on (rollover) {

      // Track with no action

      getURL("javascript:urchinTracker('/folder/file');");

}
 
on (release) {

      //Track with action

      getURL("javascript:urchinTracker('/folder/file');");

      _root.gotoAndPlay(3);

      myVar = "Flash Track Test"

}

Except I want to actually getURL not gotoAndPlay a particular frame