//<![CDATA[

function load() {
if (GBrowserIsCompatible()) {
function createMarker(point,html) {
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html);
});
return marker;
}

var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(43.639812,-72.256876), 7);

var point = new GLatLng(43.639812,-72.256876);
var html = '<div class="mapBox" style="width:200px; height:180px;"><strong>Cullenberg &amp; Tensen in Lebanon</strong><form action="http://maps.google.com/maps" method="get" target="_blank"> 85 Mechanic St <br />Lebanon, NH 03766<br/>800 371-3506<br /><em>Directions to here from</em>: <br /><input type="text"   name="saddr" value="" size="25"><br /><input type="hidden" name="daddr" value="Lebanon, NH, 03766" /><input type="hidden" name="hl" value="en"><input type="submit" value="Directions"/></form></div>'
var marker = createMarker(point,html)
map.addOverlay(marker);
marker.openInfoWindowHtml(html);

var point = new GLatLng(44.306342,-71.770851);
var html2 = '<div class="mapBox" style="width:200px; height:180px;"><strong>Cullenberg &amp; Tensen in Littleton</strong><form action="http://maps.google.com/maps" method="get" target="_blank"> 15 Main St <br />Littleton, NH 03561<br/>800 371-3506<br /><em>Directions to here from</em>: <br /><input type="text"   name="saddr" value="" size="25"><br /><input type="hidden" name="daddr" value="Littleton, NH, 03561" /><input type="hidden" name="hl" value="en"><input type="submit" value="Directions"/></form></div>'
var marker = createMarker(point,html2)
map.addOverlay(marker);
marker.openInfoWindowHtml(html2);


var point = new GLatLng(44.417808,-72.016695);
var html3 = '<div class="mapBox" style="width:200px; height:180px;"><strong>Cullenberg &amp; Tensen in St. Johnsbury</strong><form action="http://maps.google.com/maps" method="get" target="_blank"> 36 Eastern Ave <br />St. Johnsbury, VT 05819<br/>800 371-3506<br /><em>Directions to here from</em>: <br /><input type="text"   name="saddr" value="" size="25"><br /><input type="hidden" name="daddr" value="St. Johnsbury, VT, 05819" /><input type="hidden" name="hl" value="en"><input type="submit" value="Directions"/></form></div>'
var marker = createMarker(point,html3)
map.addOverlay(marker);
marker.openInfoWindowHtml(html3);

var point = new GLatLng(42.934195,-72.278228);
var html4 = '<div class="mapBox" style="width:200px; height:180px;"><strong>Cullenberg &amp; Tensen in Keene</strong><form action="http://maps.google.com/maps" method="get" target="_blank"> 1 Central Square <br />Keene, NH 03431<br/>800 371-3506<br /><em>Directions to here from</em>: <br /><input type="text"   name="saddr" value="" size="25"><br /><input type="hidden" name="daddr" value="Keene, NH, 03431" /><input type="hidden" name="hl" value="en"><input type="submit" value="Directions"/></form></div>'
var marker = createMarker(point,html4)
map.addOverlay(marker);
marker.openInfoWindowHtml(html4);




}}

//]]>



