Thanks for the suggestions. I'm still trying to get my head around JavaScript so I'm not too sure how to implement them?
My event code is
document.ondblclick = function(){newTarg(8)};
Then the newTarg function flags the IMG as moving, and sets TargetX and TargetY variables to the click location
Then I have a recursive function called moveImg that compares the IMG's current position to the targetX and Y, and increments its Left and Top CSS properties if needed.
I assume I'd put 'return false' at the end of the ondblclick function? So:
document.ondblclick = function(){newTarg(8);return false;};
Cheers for the help, but I'm a bit stumped...