function Hashtable(){ this.a = new Array(); this.b = new Array(); this.size = 0; this.put = Hashtable_put; this.get = Hashtable_get; this.keys = this.a; this.values = this.b; this.remove = Hashtable_remove; this.removeAll = Hashtable_removeAll; } function Hashtable_removeAll(){ with(this){ a = new Array(); b = new Array(); size = this.a.length keys = this.a values = this.b } } function Hashtable_remove(x){ n = this.size; for(i=0;i