The information is related to google maps infobox
In js/google_js/mapfunctions.js look for function wpestate_createMarker – around line 750 and replace this code
var title= this.title.substr(0, 30);
if(this.title.length > 30){
title=title+”…”;
}
with var title= this.title;
Do the same for function wpestate_createMarker_sh at line 523 in the same file.