var Cfg = new Array();

 Cfg['Languages'] = new Array(); // Must be the same as in Config.php file
  Cfg['Languages'][0] = "EN"; // 0 - Default language
  Cfg['Languages'][1] = "ES";
  Cfg['Languages'][2] = "FR";

 Cfg['LanguageNames'] = new Array(); // Must be the same as in Config.php file
  Cfg['LanguageNames'][0] = "English"; // 0 - Default language
  Cfg['LanguageNames'][1] = "Spanish";
  Cfg['LanguageNames'][2] = "French";

 Cfg['Environment'] = new Array();
  Cfg['Environment']['FilesTMP'] = "Files/TMP/"; // Must be the same as in Config.php file; Relative to root; With ending "/"
  Cfg['Environment']['SessionPrefix'] = "SAC_"; // Must be the same as in Config.php file

  Cfg['Environment']['Files'] = Array();
   Cfg['Environment']['Files']['Housing'] = "Files/Housing/"; // Must be the same as in Config.js file; Relative to root; With ending "/"
   Cfg['Environment']['Files']['Programs'] = "Files/Programs/"; // Must be the same as in Config.js file; Relative to root; With ending "/"

  Cfg['Environment']['CookiesLife'] = new Array();
   Cfg['Environment']['CookiesLife']['ExpandingDivs'] = 365; // In days (1 year); For information of expanded/collapsed div content

  Cfg['Environment']['Timeouts'] = new Array();
   Cfg['Environment']['Timeouts']['RemoveStatus'] = 10000; // In ms
