	var map = null;  
			var pinid = 0;
			
			function GetMap()         
				{            
					map = new VEMap('myMap');            
					map.LoadMap(new VELatLong(39.67800, 15.8230), 15 ,'h' ,false);    
					AddParcheggioDiscesaCorvino();
					AddParcheggioParcoCorvino();
					AddParcheggioBenedettoCroce();
					AddParcheggioAmendola();
				} 
				
			var icon = "<div style='width: 25px; height:20px;'><img src='images/Logo-Parcheggio-Pubblico.png'></div>";  
				
		
			function AddParcheggioDiscesaCorvino()      {          
				var shape = new VEShape(VEShapeType.Pushpin, new VELatLong(39.67923, 15.8172));
				shape.SetCustomIcon(icon);
				shape.SetTitle('Parcheggio Discesa Corvino');          
				shape.SetDescription('Discesa Corvino');         
				map.AddShape(shape);      
			}	
			
			function AddParcheggioParcoCorvino()      {          
				var shape = new VEShape(VEShapeType.Pushpin, new VELatLong(39.6796, 15.8213));
				shape.SetCustomIcon(icon);
				shape.SetTitle('Parcheggio Parco Corvino');          
				shape.SetDescription('Ingresso Parco Corvino');         
				map.AddShape(shape);      
			}	
			
			function AddParcheggioBenedettoCroce()      {          
				var shape = new VEShape(VEShapeType.Pushpin, new VELatLong(39.6772, 15.8210));
				shape.SetCustomIcon(icon);
				shape.SetTitle('Parcheggio Benedetto Croce');          
				shape.SetDescription('Via Benedetto Croce');         
				map.AddShape(shape);      
			}	
			
			function AddParcheggioAmendola()      {          
				var shape = new VEShape(VEShapeType.Pushpin, new VELatLong(39.6764, 15.8235));
				shape.SetCustomIcon(icon);
				shape.SetTitle('Parcheggio Amendola'); 
				shape.SetDescription('Via Amendola');         
				map.AddShape(shape);      
			}	
			
	
			function Zoom(img) {
				window.open('FotogalleryZoom.aspx?img=' + img, "new", "width=860,height=720, scrollbars=yes, resizable=1");
			}			      