        function VEXCmsBingMaps() {
            // Create an empty Map Object for Southampton
            var mapSouthampton = null;
            mapSouthampton = new VEMap('CmsBingMaps');
            mapSouthampton.HideScalebar();
            mapSouthampton.SetDashboardSize(VEDashboardSize.Small);
 
            // Here is the adjust Lat/Long for South 70th Street
            var latSouthampton = '40.13280174319821';
            var longSouthampton = '-75.26994109153747';
            var latlongSouthampton = new VELatLong(latSouthampton, longSouthampton);
 
            // Load the Map Center's position with the Lat/Long Below with Zoom (15:Southhampton/14:Ivyland) with a map style of Road
            mapSouthampton.LoadMap(latlongSouthampton, 15, VEMapStyle.Road);

            var urlSouthampton = 'http://www.bing.com/maps/?v=2';
            //urlSouthampton += '&cp=' + latSouthampton + '~' + longSouthampton + '&style=r&lvl=12';
            //urlSouthampton += '&sp=Point.qpnxqn8qtrkn';
            //urlSouthampton += '_Caramanico%20Maguire%20Associates%2C%20Inc._Bulding%20610%20%E2%80%A2%20Suite%20110%20%E2%80%A2%20350%20Sentry%20Parkway%20East%20Blue%20Bell%2C%20PA%2019422_Phone:%202215-365-6200___&amp;rtp=%7Epos.40.13252525034963_-75.26939481955492_350 Sentry Pkwy E, Blue Bell, PA 19422';

            var descSouthampton = 'XTL, Inc.<br>';
            //descSouthampton += '3200 South 70th Street<br>';
            //descSouthampton += 'Philadelphia, PA 19153-3232<br>&nbsp;<br>';
            //descSouthampton += 'Phone: 215-365-6200<br>&nbsp;<br>&nbsp;<br>';
            //descSouthampton += '<a target="_blank" href="' + urlSouthampton + '">Click Here to Get Directions</a>';
  
            //Create a new Pushpin Shape based upon the above Map location
            var shapeSouthampton = new VEShape(VEShapeType.Pushpin, latlongSouthampton);
            shapeSouthampton.Id = 10;
            shapeSouthampton.SetTitle('Our Location<br>');
            shapeSouthampton.SetDescription(descSouthampton);
 
            // create a Shape Layer and the Shape to the Layer
            var shapeLayerSouthampton = new VEShapeLayer();
            shapeLayerSouthampton.AddShape(shapeSouthampton);
 
            // Add the ShapeLayer to the Map
            mapSouthampton.AddShapeLayer(shapeLayerSouthampton);
        }

