/// var _T_Sites = function() { this.getTable = function() { return SiteDB.getTable("T_Sites"); }; this.getMenuID = function() { var table = this.getTable(); for (var site in table) { return table[site]["MenuID"]; } return null; }; this.getDistName = function() { var table = this.getTable(); for (var site in table) { return table[site]["OwnerUserName"]; } return null; }; }; var T_Sites=new _T_Sites();