function load1() {
  if (GBrowserIsCompatible()) {	
  	var mapDiv1 = document.getElementById( "wp-google-maps-1" );
    var map1 = new GMap2(document.getElementById("wp-google-maps-1"), {size:new GSize(690, 600)});
    map1.checkResize();
                	map1.setCenter(new GLatLng(48.8582, 2.2940611839294434), 18, G_SATELLITE_MAP);
	map1.addControl(new GMapTypeControl(true));
			map1.addControl(new GSmallMapControl());
		// Bind a search control to the map, suppress result list.
    	map1.enableDoubleClickZoom();
	map1.enableScrollWheelZoom();
    map1.enableContinuousZoom();
    map1.getContainer().style.overflow="hidden";

	    
    // Remove handling of default scrolling action
    if ( mapDiv1.addEventListener ){
        mapDiv1.addEventListener( 'DOMMouseScroll', doNotPropagate1,
false );
        disabledDefSWZoom = true ;
    } else {
        mapDiv1.onmousewheel = doNotPropagate1 ;
        disabledDefSWZoom = true ;
    }
  }
}

// Stop page scrolling when inside the map.
function doNotPropagate1( e1 ){
    if ( !e1 ){
        e1 = window.event ;
    }
    e1.returnValue = false;
    e1.cancelBubble = true;
    if ( e1.preventDefault && e1.stopPropagation ){
        e1.preventDefault() ;
        e1.stopPropagation() ;
    }
}
