var results = [this.DEFAULT_NAMESPACE];
// simply enumerate through our array and save any string// that starts with __var found = {};
var myStorage = globalStorage[this._domain];
var tester = /^__([^_]*)_/|>;
for(var i = 0; i < myStorage.length; i++){var currentKey = myStorage.key(i);
if(tester.test(currentKey) == true){var currentNS = currentKey.match(tester)[1];
// have we seen this namespace before?if(typeof found[currentNS] == "undefined"){
found[currentNS] = true;
results.push(currentNS);
}}}return results;