﻿/*
 - - - - - - - - - - - - - - - - - - - - -
Titel: BM Bewernick M?beltransporte (JavaScript)
Autor: Dumrath & Fassnacht KG (sti)
URL: http://www.duf-online.de/

Erstellt : 2006-08-14
Bearbeitet: 2006-08-14
- - - - - - - - - - - - - - - - - - - - -
*/

window.onload = function() {
	load();
}

window.onunload = function() {
	GUnload();
}

/* - - - - - - - - - - - - - - - - - - - - - */

function load() {
	if (GBrowserIsCompatible()) {
    	var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
    	map.setCenter(new GLatLng(53.597866, 10.042545), 15); // Position des Geschäfts

		// Informationsfenster
		var infoTabs = [
			new GInfoWindowTab("Adresse", "<strong>BM Bewernick Möbeltransporte</strong><br />Fuhlsbüttler Straße 248-250<br />22307 Hamburg")
		];

		// Marker erzeugen und platzieren

		var marker = new GMarker(map.getCenter());
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowTabsHtml(infoTabs);
		});

		map.addOverlay(marker);
		map.setCenter(new GLatLng(53.597866, 10.042545), 13); // Postition der Kamera
		
	}
}
