var map = null;
var pin = null;
function getMap() {
    if (document.getElementById("locationMap") != null && document.getElementById("locationMap") != undefined)
    {
        map = new VEMap('locationMap');
        map.LoadMap(new VELatLong(47.648829, -122.140411), 15, 'r', false);
        pin = new VEPushpin(1, map.GetCenter(), null, 'TSG Events', 'WA');
        map.AddPushpin(pin);
    }
}