'
+'';
infoBubble.setContent(content);
var latLng;
geocoder = new google.maps.Geocoder();
geocoder.geocode( { "address": "United States"}, function(results, status) {
latLng = results[0].geometry.location;
map = new google.maps.Map(document.getElementById("mapCanvas_19843_1676091808_1553525802"), {
zoom: 10,
center: latLng,
disableDefaultUI: false,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
marker = new google.maps.Marker({
position: latLng,
map: map,
icon: ""
});
infoBubble.open(map, marker);
});
/*google.maps.event.addListenerOnce(map, 'idle', function() {
google.maps.event.trigger(map, 'resize');
});*/
}
if(document.readyState === "complete") {
initialize_19843_1676091808_1553525802();
} else {
// Onload handler to fire off the app.
jQuery(document).ready(function() {
google.maps.event.addDomListener(window, "load", initialize_19843_1676091808_1553525802);
});
}