var map = new GMap2(document.getElementById("map")); 
 map.addControl(new GSmallMapControl()); 
 map.addControl(new GMapTypeControl()); 
 map.setCenter(new GLatLng(52.379037670425085, 13.017672300338745), 16, G_HYBRID_MAP);  
 var point1 = new GPoint(13.017446994781494, 52.37833689437097); 
 var html1 = "<span style='font-family: Arial;font-size: 12px;'><h1 style='border-bottom:1px solid #333366;color:#333366;font-size:12px;'><center>OSC Potsdam</center></h1><div style='float:left'><a href='http://www.osc-potsdam.de' title='OSC Potsdam Logo'><img src='http://www.osc-potsdam.de/osc/templates/osc_potsdam/images/osc_logo.gif' width='100' height='41' border='0' hspace='8' vspace='4' alt='OSC Potsdam Logo' /></a></div><div style='float:left;width:250px;'>Der OSC Potsdam bietet jederzeit <br />die Möglichkeit einer sportlichen<br /> Betätigung im Kinder-, Jugend- und <br />Erwachsenenbereich sowie im Leistungssport!</div></span>"; 
 var oscpotsdam = new GMarker(point1); 
 GEvent.addListener(oscpotsdam, "click", function() {oscpotsdam.openInfoWindowHtml(html1)}); 
 map.addOverlay(oscpotsdam); 