function Instancier(){this.map=new Array()}Instancier.prototype.createInstance=function(b,a){this.map[b]=a};Instancier.prototype.getInstance=function(a){return this.map[a]};var instancier=new Instancier();