﻿/*
This is the main JavaScript file for the Assets Web applictation. It defines
the ASSETWEB namespace(s).
*/
Ext.namespace("ASSETSWEB");
Ext.namespace("ASSETSWEB.util");
ASSETSWEB.init = function(pCfg) {
    var cfg = pCfg || {};
    if (!cfg.mapContainer) throw new "Missing mapContainer config parameter";
    ASSETSWEB.AssetsMap.init(cfg.mapContainer);
}