function initialize() {
  if (GBrowserIsCompatible()) {
     var map = new GMap2(document.getElementById("map_canvas"));
     map.setCenter(new GLatLng(51.30359, 
			       -0.33244),
			       15);
     
     /*set type map: G_HYBRID_MAP, G_NORMAL_MAP, G_SATELLITE_MAP*/
     map.setMapType(G_NORMAL_MAP);  
//????????? ??????? ? ???????????? ????	
		    
			   var marker = new GMarker(new GLatLng(51.30359, -0.33244),false);
			   map.addOverlay( marker );	
		     
     
/////////////////////////////////////////////////////
	var mapTypeControl = new GMapTypeControl();
	/*??????? ????????? ??? ???????? ?????? ? ?????? ????*/
        var topRight = new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(5,5));
	map.addControl(mapTypeControl, topRight); /* topRight ????? ????? ??????*/
/*GSmallMapControl() -- ??????? ???????? ? ????????, +- ?????/???? ?  ????*/
	map.addControl(new GSmallMapControl());
	
  }
}	


function initialize2() {
  if (GBrowserIsCompatible()) {
     var map = new GMap2(document.getElementById("map_canvas2"));
     map.setCenter(new GLatLng(51.309964, 
			       -0.298446),
			       15);
     
     /*set type map: G_HYBRID_MAP, G_NORMAL_MAP, G_SATELLITE_MAP*/
     map.setMapType(G_NORMAL_MAP);  
//????????? ??????? ? ???????????? ????	
		    
			   var marker = new GMarker(new GLatLng(51.309964, -0.298446),false);
			   map.addOverlay( marker );	
		     
     
/////////////////////////////////////////////////////
	var mapTypeControl = new GMapTypeControl();
	/*??????? ????????? ??? ???????? ?????? ? ?????? ????*/
        var topRight = new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(5,5));
	map.addControl(mapTypeControl, topRight); /* topRight ????? ????? ??????*/
/*GSmallMapControl() -- ??????? ???????? ? ????????, +- ?????/???? ?  ????*/
	map.addControl(new GSmallMapControl());
	
  }
}			

