function CarregaMapa()
{
  var map = null;
  var ponto = null;
  var Endereco= "R. Alferes Magalh&atilde;es, 92 – 12&#176; andar – Conj. 123/124 - Santana, São Paulo - SP, 02034-006";
  var Info = '<font face="arial"><strong>TERMOPRINTER</strong><BR><br>' +              
             '<font size="2">R. Alferes Magalh&atilde;es, 92 - 12&#176; andar - Conj. 123/124<BR>02034-006 - Santana<BR>S&atilde;o Paulo - SP</font></font>';  
  
  if (GBrowserIsCompatible())
  {
    map = new GMap2(document.getElementById("map"));
    //ponto = new GLatLng(-23.659973, -46.686530); //Dataregis
    ponto = new GLatLng(-23.50517527654673, -46.62531137466431);
        
    map.setCenter(ponto, 15);        
    var marker = new GMarker(ponto);
    map.addOverlay(marker);
    marker.openInfoWindowHtml(Info);
    //marker.setImage(url_img)
  }
}