Application.ExternalCall() makes mouse cursor vanish

I have a 3D game object with the following script attached to it:

function OnMouseUp () {
if (!Application.isPlaying)
return;

Application.ExternalCall (“ClickOnPicture”, name);
}

I build as a streamed web player and in my HTML I have the javascript function:

function ClickOnPicture (pictureName) {
alert(pictureName);
}

When the alert is displayed in the web browser when I click on the 3D object, the mouse cursor is invisible inside the browser window. Why? What might I have done to cause this?

Thanks for any help,
Chris Disdero
Everett, WA USA

Never mind, I figured it out. It was some other code that changed cursors in OnMouseOver() events. Sorry to post prematurely.

Chris Disdero
Everett, WA USA