		 var map = null;
         
         function GetMap(oras)
         {
            map = new VEMap('myMap');
			map.LoadMap(new VELatLong(44.440757,26.087894), 16 ,'h' ,false);
			map.SetMapStyle(VEMapStyle.Road);
			
			CreateLayer();
				
			//Add a pushpin to the new layer
			shape = new VEShape(VEShapeType.Pushpin, new VELatLong(44.440757,26.087894));
			var icon = "<img src='http://www.shoop.ro/images/logo-shoop_240x60.jpg' width='120'>";
         	shape.SetCustomIcon(icon);
			shape.SetTitle('<a href="" class="green large greenhover nonunderlinehover">Shoop.ro</a>');
			shape.SetDescription('<hr><b>Adresa:</b> Str Luigi Cazzavilan nr. 9A, sector 1, Bucuresti<hr>');
			layer.AddShape(shape);
		 }
		 
		 
		 function CreateLayer()
		 {
			layer = new VEShapeLayer();
			map.AddShapeLayer(layer);
		 }

