Hallo,
document.getElementById('myspan').onmouseover=mouseClick(this);
funktioniert ja nicht. Die Funktion würde sofort aufgerufen werden.
versuch mal sowas:
document.getElementById('myspan').onmouseover=function(){mouseClick(this);}
Zur Not gibt es dann noch eval, vmtl. so ähnlich: ...{eval(mouseClick(this)).
Grüsse
Cyx23