Find An Node and Highlight It (Web Based)

I can find the node that I need but I cant display it as selected in the view. How do I Highlight a node dynamically through code.
Also How do I change the mouse cursor in a web based GoView to display a Image. along with the mouse pointer.
Thanks.
DA

The easiest thing to do would be to make it selected: aView.Selection.Add(someNode)
Customizing the dynamic behavior on the client can be tricky–it has to be done in JavaScript. You’ll need to look at the HTML source code that is generated for a page. Examine the definition of goMouseMove and how it is called from the view’s onMouseMove event handler.