var data = brandData;
function brand() {}
brand.prototype = new baseCBSM('brand', data);
//brand.prototype.haveParentArea = true;
brand.prototype.haveParentArea = false;
brand.prototype.haveChildArea = haveSeriesArea;
brand.prototype.init = function() { haveBrandArea = true; }

brand.prototype.getListCallbackFunc = bCallback;
brand.prototype.runParentChangeCallbackFunc = bGetList;
if ( brand.prototype.haveChildArea ) brand.prototype.haveChildAreaFunc = sGetList;

function bCallback(data) { b.runCallback(data); }
function bGetList() { b.getList(); }
var b = new brand();
b.init();