	// Create a directions object and register a map and DIV to hold the 
    // resulting computed directions

    var map;

    function initialize() {
      map = new GMap2(document.getElementById("map_canvas"));
	  map.addControl(new GSmallMapControl());
      map.setCenter(new GLatLng(62.24165046394009,25.743026733398438), 13);
	 


    var point = new GLatLng(62.24312950576427,25.745887041157403);
    map.addOverlay(new GMarker(point));
 
    }
