body {
	background-color: #131416;
}
a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
a:hover {
	color: #FF9900;
	text-decoration: none;
}
a:active {
	text-decoration: none;
	color: #FF9900;
}
.Stil14 {
	font-family: Arial, Helvetica, sans-serif;
	color: #C60;
}
.Stil15 {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
.Stil18 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
}
.Stil22 {color: #FFFFFF}
#scr {
	position:relative;
	height:440px;
	width:745px;
	margin:0;
	padding:0;
	overflow:auto;
	<div id="mapCanvas" style="width:100%; height:100%; min-width:300px; min-height:300px"></div>
<script type="text/javascript">
// initialize the google Maps 	
	
     function initializeGoogleMap() {
		// set latitude and longitude to center the map around
		var latlng = new google.maps.LatLng(53.96202, 
											9.03);
		
		// set up the default options
		var myOptions = {
		  zoom: 14,
		  center: latlng,
		  navigationControl: true,
		  navigationControlOptions: 
		  	{style: google.maps.NavigationControlStyle.DEFAULT,
			 position: google.maps.ControlPosition.TOP_LEFT },
		  mapTypeControl: true,
		  mapTypeControlOptions: 
		  	{style: google.maps.MapTypeControlStyle.DROPDOWN_MENU,
			 position: google.maps.ControlPosition.TOP_RIGHT },

		  scaleControl: true,
		   scaleControlOptions: {
        		position: google.maps.ControlPosition.BOTTOM_LEFT
    	  }, 
		  mapTypeId: google.maps.MapTypeId.TERRAIN,
		  draggable: true,
		  disableDoubleClickZoom: false,
		  keyboardShortcuts: true
		};
		var map = new google.maps.Map(document.getElementById("mapCanvas"), myOptions);
		if (true) {
			var trafficLayer = new google.maps.TrafficLayer();
			trafficLayer.setMap(map);
		}
		if (false) {
			var bikeLayer = new google.maps.BicyclingLayer();
			bikeLayer.setMap(map);
		}
		if (true) {
			addMarker(map,53.96202,9.03268,"We are here");
		}
	  }

	  window.onload = initializeGoogleMap();

	 // Add a marker to the map at specified latitude and longitude with tooltip
	 function addMarker(map,lat,long,titleText) {
	  	var markerLatlng = new google.maps.LatLng(lat,long);
	 	var marker = new google.maps.Marker({
      		position: markerLatlng, 
      		map: map, 
      		title:"We are here",
			icon: ""});   
	 }
}
#scr2 {
	position:absolute;
	height:480px;
	width:400px;
	margin:0;
	padding:0;
	overflow:auto;
	left: 620px;
	top: 95px;
}
		p.error, p.success {
		
		font-family:Arial, Helvetica, sans-serif;
		font-size:12px;
			color: #E9B501;
		
}

