document.write('<script src=\".\/js\/quotemedia-tool.js\"><\/script>');Ext.namespace('DJIndexes');DJIndexes.IntradayQuotemediaBridge=function(){var config={container:'chart',index:{prefix:'^',symbol:'DJI',compare:'GOOG'},scale:'5d',width:330};var el=Ext.get(config.container);return{changeQuote:function(symbol,scale){if(symbol){this.setIndex(symbol);}if(scale){this.setScale(scale);}try{qm_changeQuote(config.index.prefix+config.index.symbol,config.scale,config.width);el.setVisible(true);}catch(e){}},getIndex:function(){return config.index.symbol;},setIndex:function(symbol){config.index.symbol=symbol.toUpperCase()||'DJI';},getScale:function(){return config.scale;},setScale:function(scale){config.scale=scale||'5d';},setWidth:function(width){config.width=width||383;}}}();