function initialize() {
    var latlng = new google.maps.LatLng(52.513401,13.398988);
    var ff = new google.maps.LatLng(52.513701,13.398388);
    var myOptions = {
      zoom: 14,
      center: latlng,
	  mapTypeControl: false,
      navigationControl: true,
      navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
      mapTypeId: google.maps.MapTypeId.ROADMAP	  
    };
	map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	var image = 'images/ff-google-marker.png';
	var marker = new google.maps.Marker({
        position: ff, 
        map: map,
		icon: image,
        title:"film|form"}); 
	
	var message = "<h3>FILM&thinsp;|&thinsp;FORM</h3><p>Caroline-von-Humboldt-weg 22 . 10117 Berlin . Germany</p><p>Tel +49 (0) 30 . 20 60 53 50</p>";
  	var infowindow = new google.maps.InfoWindow(
      { content: message,
        pixelOffset: new google.maps.Size(0,32)
	  });
		google.maps.event.addListener(marker, "click", function()
 		{infowindow.open(map,marker)});
  }
   
      window.onload = function () {
		initialize ();}
