JS.include( 'callback_api.js', viso_path ); JS.include( 'scheduler_api.js', viso_path ); //----------------------------------------------------------------------------- // object utilities. //----------------------------------------------------------------------------- function viso_get( vis_obj_id ) { return document.getElementById( vis_obj_id ); } //----------------------------------------------------------------------------- // object content //----------------------------------------------------------------------------- function viso_set_html( vis_obj, html ) { if( !vis_obj ) return; html = (html != null && html != undefined) ? html : ''; if( ie ) { vis_obj.innerHTML = html; var images = vis_obj.all.tags( "img" ); for( var i=0;i