//<![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(45.010281,-93.028321), 10);

var point = new GLatLng(45.010281,-93.028321);
var html = '<div class="mapBox" style="width:200px; height:180px;"><strong>Mark A. Kleive</strong><form action="http://maps.google.com/maps" method="get" target="_blank"> 1714 Cope Avenue,<br />Maplewood, MN 55109<br/>(651) 770-0055<br /><em>Directions to here from</em>: <br /><input type="text"   name="saddr" value="" size="25"><br /><input type="hidden" name="daddr" value="Maplewood, MN, 55109" /><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);

}}

//]]>