function tooltip(insert, level, msg) { if (insert) { tt = attachMovie("tooltip", "tooltip", level,{_x:_xmouse,_y:_ymouse}); tt.tip.text = msg; tt.tipS.text = msg; tt.onMouseMove = function() { this._x = _xmouse; this._y = _ymouse; }; } else { unloadMovie("tooltip"); } }