﻿/*
 - - - - - - - - - - - - - - - - - - - - -
Titel: Kock Werkzeugtechnik  (JavaScript)
Autor: Dumrath & Fassnacht KG (mh)
URL: http://www.duf-online.de/

Erstellt : 14.02.2007

- - - - - - - - - - - - - - - - - - - - -
*/

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.673769, 9.679663 ), 15); // Position des Geschäfts

  	

		// Informationsfenster
		var infoTabs = [
			new GInfoWindowTab("Adresse", "<strong>Kock Werkzeugtechnik</strong><br />Industriestraße 1<br />25436 Moorrege")
		];

		// 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.673769, 9.679663 ), 15); // Postition der Kamera
		
	}
}

