//<![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(39.7089766,-104.9440748), 13);

var point = new GLatLng(39.7089766,-104.9440748);
var html = '<div class="mapBox" style="width:200px; height:200px;"><strong>The Eichner Law Firm</strong><form action="http://maps.google.com/maps" method="get" target="_blank">3773 Cherry Creek Drive North<br />Ptarmigan Place, suite 900<br />Denver, Colorado 80209<br/><strong>Phone</strong>: 303.837.9800<br /><strong>Fax</strong>: 303.320.6613<br /><strong>Email</strong>: <a href="mailto:Ken@EichnerLaw.com">Ken@EichnerLaw.com</a><br /><strong>Website</strong>: <a href="http://www.eichnerlaw.com/">www.EichnerLaw.com</a><br /><em>Directions to here from</em>: <br /><input type="text"   name="saddr" value="" size="25"><br /><input type="hidden" name="daddr" value="Denver, Colorado 80209" /><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);

}}

//]]>