//<![CDATA[
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GOverviewMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(50.40319758824421, 9.359525442123413), 11, G_NORMAL_MAP);
var point = new GPoint(9.359525442123413, 50.40319758824421);
var icon = new GIcon();
icon.image = "http://www.ei-team.de/images/googlemap.png";
icon.shadow = "http://www.ei-team.de/images/googlemap_shadow.png";
icon.iconSize = new GSize(22, 37);
icon.shadowSize = new GSize(40, 37);
icon.iconAnchor = new GPoint(6, 20);
icon.infoWindowAnchor = new GPoint(0, 0);
var html = "<h5>Ei-Team</h5><p><a href='http://www.berkel-ei.de' title='berkel-ei'><img src='http://www.ei-team.de/images/LogoKleinEi.gif' border='0' align='left'  hspace='0' vspace='0' width='80' height='70' alt='berkel-ei' style='margin:4px 0 0 0;'/></a><p style='margin:0 0 0 90px;'>Birsteinerstraße 2<br>36399 Radmühl<br><br><a target='_blank' href='http://maps.google.de/maps?f=q&hl=de&geocode=&q=Birsteinerstra%C3%9Fe%202%2C%2036399%20Radm%C3%BChl&sll=51.124213,10.546875&sspn=10.390458,20.478516&ie=UTF-8&t=h&z=16&iwloc=addr_target%3D&sa=N&tab=il target='_blank'><u>Route erstellen</u></a></p>"
var fulda = new GMarker(point, icon);
GEvent.addListener(fulda, "click", function() {fulda.openInfoWindowHtml(html)});
map.addOverlay(fulda);
//]]>
