var map = null;
            
function loadAbesseMap()
{
    // If the browser is Firefox get the version number
    var ffv = 0;
    var ffn = "Firefox/"
    var ffp = navigator.userAgent.indexOf(ffn);
    if (ffp != -1) ffv = parseFloat(navigator.userAgent.substring(ffp + ffn.length));
    // If we're using Firefox 1.5 or above override the Virtual Earth drawing functions to use SVG
    if (ffv >= 1.5) {
        Msn.Drawing.Graphic.CreateGraphic=function(f,b) { return new Msn.Drawing.SVGGraphic(f,b) }
    }    
    // Put your own code below this line    
    map = new VEMap("map");
    map.LoadMap(new VELatLong(47.459143,19.030182),15,VEMapStyle.Road);
    //Create a pushpin and add it to the map
    var pushpin = new VEPushpin('1', //Id - must be unique
        new VELatLong(47.459143,19.030182), //latitude, longitude
        null, //icon url
        'Abesse Zrt.', //Title
        'www.abesse.hu'  //Notes
    );
    map.AddPushpin(pushpin);

}
