// Begin functie voor zoomen in de bubble

    function myzoom(a) { 
      map.setZoom(map.getZoom() + a); 
    } 

// Einde functie voor zoomen in de bubble

// Zoom-In Function using Geocode point only. - function zoomIN(i)

        function zoomIN(i) {
           //Zoom in on the current marker.
           //alert("markers["+i+"]="+ markers[i].location+"@"+ markers[i].point);
           map.setCenter(gmarkers[i].point,8);
        }

// END of Zoom-In Function using Geocode point only. - function zoomIN(i)

// Zoom-Out Function - function zoomOUT()

        function zoomOUT() {
           //Return to starting point.
         map.setCenter(new GLatLng(52.0967, 4.32951), 9);
//         map.setCenter(new GLatLng(gmarkers[i].point, 8);           
        }

// END of Zoom-Out Function - function zoomOUT()


