i want to call the functions movein(this) & moveout(this) directly with out using onmouseover or onmouseout
by the way (this) is [object htmlDivElement]
var tb = '<div id="' + o.id + '" onmouseover="movein(this);" onmouseout="moveout(this);"><div><table>\n';
Tried
movein(document.getElementById(o.id))&moveout(document.getElementById(o.id))?