
var GeoLocation=Class.create();GeoLocation.prototype={initialize:function(el,options){this.element=$(el);this.el=el;this.loaderico=$(options.loaderico);this.container=$(options.container);this.onsuccess=options.onsuccess;this.ajaxurl=options.ajaxurl;this.simpleui=options.simpleui;this.darkbg=options.darkbg;Event.observe(this.element,"change",this.find.bindAsEventListener(this));},find:function(eventName){this.loaderico.show();var onsuccess=this.onsuccess;new Ajax.Updater(this.container,this.ajaxurl,{method:'get',evalScripts:true,parameters:{location:this.element.value,f:"search",fn:"search",id:this.el,c:this.simpleui,darkbg:this.darkbg},onSuccess:function(){if(typeof onsuccess=='function'){setTimeout(function(){onsuccess();},50);}}});}}