﻿
        var map = null; var pin = null;
        function GetMap() {

            map = new VEMap('myMap');
            map.SetDashboardSize(VEDashboardSize.Normal);
            map.LoadMap(new VELatLong(30.4232, -86.609194), 12, VEMapStyle.Road);

            var center = map.GetCenter();
            pin = map.AddPushpin(center);
            var title = "<div style='text-align:left;'><img src='http://www.bitwizards.com/App_Themes/Bit-Wizards/images/bw_logo_small.jpg' alt='Bit-Wizards CSS, Inc.'><hr />189 Eglin Pky NE<br />Suite 201<br />Fort Walton Beach, FL 32548<br />800-651-4948<br />850-226-4200</div>";
            pin.SetTitle(title);
            pin.SetCustomIcon("http://www.bitwizards.com/App_themes/Bit-Wizards/images/star.gif");
        }
        
        window.onload = GetMap;