
google.load("maps", "2.x", {"other_params":"sensor=true"});

function formatbubbleText(name,address,address2,phone,fax,url){
    var theText;
    theText = '<div align=left><strong>' + name + '</strong><br/>' + address + '<br/>' + address2 + '<br/>Phone: '+ phone + '<br/>Fax: '+ fax + '<br/>Website: '+ url +  '<br>'+ '<a href="http://maps.google.com/maps?f=d&daddr='+ escape(address) + ', ' + escape(address2) + '" target="_blank">Get Directions</a></div>';
    return theText;
}

var gmarkers = [];


// This function picks up the click and opens the corresponding info window
function showDealerBallon(i) {
  GEvent.trigger(gmarkers[i], "click");
}
