work around table sizing bugs on FF2 by forcing redraw
if(dojo.isFF == 2){ var node=this.domNode; var old = node.style.opacity; node.style.opacity = "0.999"; this._layoutHackHandle = setTimeout(dojo.hitch(this, function(){ this._layoutHackHandle = null; node.style.opacity = old; }), 0); }