// Virtual Earth Map
var map = null;
         function loadnormal()
         {
            map = new VEMap('myMap');
            map.SetDashboardSize(VEDashboardSize.Normal);
            map.LoadMap(new VELatLong(50.6884, -114.2326), 14 ,'r' ,false);
            map.SetScaleBarDistanceUnit(VEDistanceUnit.Kilometers);
            var pit = new VELatLong(50.6915, -114.2449);
            var office = new VELatLong(50.6899, -114.2267);
            var Pushpin1 = new VEShape(VEShapeType.Pushpin,office);
            var Pushpin2 = new VEShape(VEShapeType.Pushpin,pit);
            Pushpin1.SetTitle('JKR Excavating Office');
            Pushpin1.SetDescription('Bay 105 - 220 3rd Street N.E., Black Diamond, Alberta');
            Pushpin2.SetTitle('Diamond Valley Gravel Pit');
            Pushpin2.SetDescription('Turn right after coming off HWY 22, take the first left then turn into the pit entrance on the left side, about 0.5km down the road');
            map.AddShape(Pushpin1);
            map.AddShape(Pushpin2);
            }
