function InitGMap() {
	if (!GBrowserIsCompatible())
                return;
                
    $('#map').css('width', '100%');
    $('#map').css('height', '400px');
    $('#map').css('margin-top', '5px');

	if ('undefined' == typeof(document.getElementById('map')))
	    return;

	var maps = [G_SATELLITE_MAP];

	if ('undefined' !== typeof(CG_OSM_OSMARENDER_MAP))
		maps.unshift(CG_OSM_OSMARENDER_MAP);

	map = new GMap2(document.getElementById('map'), {mapTypes: maps});

	map.addControl(new GLargeMapControl3D());
	map.addControl(new GMapTypeControl());
	//map.enableScrollWheelZoom(); // разрешить зум колесом мышки
	map.setCenter( new GLatLng(53.35220, 83.745266), 13);  // Barnaul at zoom-level 13
	
	/*
	
    */

	//window.onbeforeunload = this.beforeUnload;
	window.onunload = GUnload;
}