var tooltip = {timer:null, 'show': function(obj, which,content_message,auto_close){var cc = system.get_object_position(obj);$(which).style.top = cc.y - 10 + 'px';if(cc.y==0) $(which).style.top = (system.get_document_size()).height/2 + 10 + 'px';$(which).style.left = cc.x + 90 + 'px';$('content_text').innerHTML=content_message;$(which).style.display = 'block';if(auto_close>0) {clearTimeout(tooltip.timer);tooltip.timer=setTimeout('tooltip.hide(\''+which+'\')',auto_close);}},'hide': function(which) { $(which).style.display = 'none';clearTimeout(tooltip.timer) } }
