var resultsLatLng=new Array();
dojo.declare("ResultInfo",null,{constructor:function(_1,_2,_3,_4,_5,_6,_7,_8,id,_9){
this.lat=_1;
this.lng=_2;
this.title=_3;
this.id=id;
this.postalCode=_4;
this.city=_5;
this.address=_6;
this.region=_7;
this.country=_8;
this.url=_9;
}});
function addLatLng(_a,_b,_c,_d,_e,_f,_10,_11,id,url){
resultsLatLng.push(new ResultInfo(_a,_b,_c,_d,_e,_f,_10,_11,id,url));
};
function displayLocation(_12){
dojo.byId("location_input").value=_12;
};

