 var map;
function initialize() {
  if (GBrowserIsCompatible()) {

    map = Incoming.getGoogleMap();
    if (map == null) {
        return;
    }
    if (typeof(_gLat) != "undefined" && typeof(_gLng) != "undefined") {
        map.setCenter(new GLatLng(_gLat, _gLng), 15);
    }
    else {
        map.setCenter(new GLatLng(50.087809, 14.420457), 15);
    }
    Incoming.googleMapsInitialize();	
  }
}

GSearch.setOnLoadCallback(initialize);