   function cartina (address,zoom){   
     if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("mappa2"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.addControl(new GOverviewMapControl());
		var geocoder = new GClientGeocoder();		 
		
		// Create our "tiny" marker icon
var tinyIcon = new GIcon();
tinyIcon.iconSize = new GSize(12, 20);
tinyIcon.shadowSize = new GSize(22, 20);
tinyIcon.iconAnchor = new GPoint(6, 20);
tinyIcon.infoWindowAnchor = new GPoint(5, 1);
markerOptions = { icon:tinyIcon };

map.setCenter(new GLatLng(10, -30), 2);
		$each(address, function(value, key){
			geocoder.getLatLng(value,  function(point) {
				if (!point) {alert(address + " not found");}
				else {
			//	map.setCenter(point, zoom);
				var marker = new GMarker(point);
				if (key == 'RUSSIA') {
					tinyIcon.image = "http://labs.google.com/ridefinder/images/mm_20_.png";
					tinyIcon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
					var content = "<div class=\"testo\" style=\"font-size: 11px;color:#0D5CA9;\" >Filiale<br><strong>Russia, Mosca</strong><br><a href=\"mailto:%72%75%73%73%69%61%40%73%69%6e%74%65%63%65%75%72%6f%70%65%2e%69%74\">&#114;&#117;&#115;&#115;&#105;&#097;&#064;&#115;&#105;&#110;&#116;&#101;&#099;&#101;&#117;&#114;&#111;&#112;&#101;&#046;&#105;&#116;</a><br>Tel. Voip +39 0331 845801</div>";
				}
				else if (key == 'USA') {
				    var content = "<div class=\"testo\" style=\"font-size: 11px;color:#0D5CA9;\" >Filiale<br><strong>Usa, Sacramento</strong><br><a href=\"mailto:%75%73%61%40%73%69%6e%74%65%63%65%75%72%6f%70%65%2e%69%74\" >&#117;&#115;&#097;&#064;&#115;&#105;&#110;&#116;&#101;&#099;&#101;&#117;&#114;&#111;&#112;&#101;&#046;&#105;&#116;</a><br>Tel. Voip +39 0331 845801</div>";
				}
				else if (key == 'ITALIA') {
				    var content = "<div class=\"testo\" style=\"font-size: 11px;color:#0D5CA9;\" >Sede Principale<br><strong>Lonate Ceppino (VA)</strong><br><a href=\"mailto:%69%74%61%6c%79%40%73%69%6e%74%65%63%65%75%72%6f%70%65%2e%69%74\" >&#105;&#116;&#097;&#108;&#121;&#064;&#115;&#105;&#110;&#116;&#101;&#099;&#101;&#117;&#114;&#111;&#112;&#101;&#046;&#105;&#116;</a><br>Tel. Voip +39 0331 845801</div>";
				}
				else if (key == 'TUNISIA') {
				    var content = "<div class=\"testo\" style=\"font-size: 11px;color:#0D5CA9;\" >Sede<br><strong>Tunis Belv&eacute;d&egrave;re</strong><br>67, Rue Alain Savary, R&eacute;sidence Jardins II, Bloc A, 6eme &egrave;tage<br />1002 Belv&eacute;d&egrave;re<br /><a href=\"mailto:%74%75%6e%69%73%69%65%40%73%69%6e%74%65%63%65%75%72%6f%70%65%2e%69%74\" >&#116;&#117;&#110;&#105;&#115;&#105;&#101;&#064;&#115;&#105;&#110;&#116;&#101;&#099;&#101;&#117;&#114;&#111;&#112;&#101;&#046;&#105;&#116;</a><br>Tel. Voip +39 0331 845801</div>";
				}
				else if (key == 'MAROCCO') {
				    var content = "<div class=\"testo\" style=\"font-size: 11px;color:#0D5CA9;\" >Sede<br><strong>Morocco Casablanca</strong><br>74, rue jean jaures<br />20000 Casablanca<br /><a href=\"mailto:%6d%6f%72%6f%63%63%6f%40%73%69%6e%74%65%63%65%75%72%6f%70%65%2e%69%74\" >&#109;&#111;&#114;&#111;&#099;&#099;&#111;&#064;&#115;&#105;&#110;&#116;&#101;&#099;&#101;&#117;&#114;&#111;&#112;&#101;&#046;&#105;&#116;</a><br>Tel. Voip +39 0331 845801</div>";
				}
				map.addOverlay(marker, markerOptions);
				 GEvent.addListener(marker, "click", function(){
				 	marker.openInfoWindowHtml(content);
					});
				 
					}});
					});
					}  
   
    
   
   }
   
     window.addEvent('domready', function() {
	 	//cartina({1:'Via Bucaneve, 16 21050 Lonate Ceppino VARESE'},14);
		setTimeout("cartina({RUSSIA:'Russia - Mosca',USA:'Usa – Sacramento',ITALIA:'Via Bucaneve, 16 21050 Lonate Ceppino VARESE',TUNISIA:'Rue Alain Savary,6  Tunis',MAROCCO:'Casablanca, Morocco'},2);",'2000');	
		
	// cartina({Tunisia:'Siège au 67, Rue Alain Savary,6ème étage Tunis Belvédère'},14);		

	 });
