﻿/*
 - - - - - - - - - - - - - - - - - - - - -
Titel: Tödtmann Geigenbau (JavaScript)
Autor: Dumrath & Fassnacht KG (sti)
URL: http://www.duf-online.de/

Erstellt : 2006-10-13
Bearbeitet: 2006-10-13
- - - - - - - - - - - - - - - - - - - - -
*/

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.554421, 9.979212), 15); // Position des Geschäfts

		// Informationsfenster
		var infoTabs = [
			new GInfoWindowTab("Adresse", "<strong>Tödtmann Geigenbau</strong><br />Pilatuspool 15<br />20355  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.554421, 9.979212), 15); // Postition der Kamera
		
	}
}

