function loadVegaMap() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
    map.addControl(new GSmallMapControl());
    map.setMapType(G_SATELLITE_MAP);
    
    var centerOfMap = new GLatLng(45.250778, 19.838133);
    map.setCenter(centerOfMap, 15);
    
    showAddress (map, "<br/><p align='center' style='font-size: 12px; font-family: Arial, Helvetica, sans-serif;'>Vega IT Sourcing DOO<br /> Augusta Cesarca 18/506<br/>Novi Sad, Serbia</p>", centerOfMap)
  } 
  else {
    alert('Google maps feature not supported in your browser!');
  }
}

function showAddress(map, info, centerOfMap) {
  var marker = new GMarker(centerOfMap);
  map.addOverlay(marker);
  
  marker.openInfoWindowHtml(info);
}
