function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
var geocoder = new GClientGeocoder();
map.addControl(new GSmallMapControl());
function showAddress(address, link, title) {
geocoder.getLatLng(
address,
function(point) {
if(point) {
map.setCenter(point, 9);
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(''+title+'
'+address+'
More Information');
});
map.addOverlay(marker);
}
}
);
}
showAddress("Lavant Lane, Burnt Hills, NY 12027","www.realtyusa.com/28110125","Lake Hill Manor");
showAddress("Old Mill Court, Rock City Falls, NY 12863","www.coldwellbankerprime.com/New_Home_Communities?DevelopmentID=32","Old Mill Court");
showAddress("Drummer Drive, Mechanicville, NY 12118","www.coldwellbankerprime.com/New_Home_Communities?DevelopmentID=33","Turning Point");
showAddress("Outlook Avenue, Saratoga Springs, NY 12866","www.coldwellbankerprime.com/New_Home_Communities?DevelopmentID=31","Washington Crossing");
showAddress("Artillery Approach, Mechanicville NY 12118","www.coldwellbankerprime.com/New_Home_Communities?DevelopmentID=97","Twin Homes at Turning Point");
showAddress("Park Place, Malta, NY 12020","","Park Place at Malta");
}
}
$(document).ready(function(){
load();
});