function Inicio(){
     var map, GDir1, GDir2, normalProj, waypoints=[], gpolys=[], routeNodes=[], myNode, markerDragged, isDragged, lastIndex, prevIndex;
     var habilitaClick = true; 
             
     if (!GBrowserIsCompatible()) {
                alert("Sorry, the Google Maps API is not compatible with this browser");
     }
     else{
	                // Display the map with some controls and set the initial location 
	                map = new GMap2(document.getElementById("map"), {draggableCursor:"crosshair"});
	                map.setCenter(new GLatLng(54.69, 25.28), 12);
	                map.enableDoubleClickZoom();    
	                map.enableScrollWheelZoom();                     
	                map.enableContinuousZoom();	
	                map.addMapType(G_SATELLITE_3D_MAP);
                	
	                map.addControl(new GMapTypeControl());
	                map.addControl(new GLargeMapControl());
	                map.addControl(new GScaleControl()); 
	       }         

}
