 function initializare() {
	var coordonate = new google.maps.LatLng(44.442331,26.148972);
		var setari = {
				zoom: 16,
				center: coordonate,
				mapTypeControl: true,            
				mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
				navigationControl: true,
				navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
				mapTypeId: google.maps.MapTypeId.ROADMAP
};
	    var harta = new google.maps.Map(document.getElementById("spatiu_harta"), setari);
	    var icoanaFirma = new google.maps.MarkerImage(BASE+'images/layout/sport_tennis.png',
	        new google.maps.Size(170,60),
	        new google.maps.Point(0,0),
	        new google.maps.Point(25,10)
	    );
	    var coordonateFirma = new google.maps.LatLng(44.442331,26.148972);
	    var marcatorFirma = new google.maps.Marker({
	        position: coordonateFirma,
	        map: harta,
	        icon: icoanaFirma,
					title: "CS Olimpia Bucuresti"
    });
	    var textPrezentare = '<div id="content"><div id="siteNotice"></div>'+
	    '<p ><font size="2">CS Olimpia Bucuresti</font></p><div id="bodyContent">'+
	    '<p><font size="2">Sos Iancului nr 128 A.</font></p>'+
	    '</div></div>';
	 
	    var fereastraInformatii = new google.maps.InfoWindow({
	        content: textPrezentare
	    });
	    google.maps.event.addListener(marcatorFirma, 'click', function() {
	        fereastraInformatii.open(harta,marcatorFirma);
	    });
	}
