Trying to create a global dataprocessor array

Hi I get error “Object doesn’t support property or method ‘enableUTFencoding’” when trying to create an array of DataProcessor object for my dynamically added grids in tabs. I want to be able to reference each object contained within each tab, that’s why I am trying a global array. Maybe there is a better way?

var DetailDataProcessor = new Array();
DetailDataProcessor[0] = dataProcessor(“/?Script=dhxupddata”);

Instead of

DetailDataProcessor[0] = dataProcessor("/?Script=dhxupddata");

you need to have

DetailDataProcessor[0] = new dataProcessor("/?Script=dhxupddata");

Thanks a lot, that was an oversite