// JavaScript Document


		var map = new GMap2(document.getElementById("tankstellen"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		// breitengrad, dann längengrad
		map.setCenter(new GLatLng( 47.832598, 13.086137), 6, G_NORMAL_MAP);
		
		var icon = new GIcon();
		icon.image = "marker_umruestbetriebe.png";
		icon.shadow = "marker_umruestbetriebe.png";
		icon.iconSize = new GSize(20, 26);
		icon.shadowSize = new GSize(20, 26);
		icon.iconAnchor = new GPoint(0, 26);
		icon.infoWindowAnchor = new GPoint(5, 1);

		
		// AUTOGAS - Tankstelle GOLSER Siegfried, hallwang sbg
		var point1 = new GLatLng(47.83259, 13.086137);
		var html1 = "<h5>AUTOGAS - Tankstelle GOLSER Siegfried</h5>Wiener Bundesstraße 15<br />5300 Hallwang<br />Salzburg"
		var point1b = new GMarker(point1, icon);
		GEvent.addListener(point1b, "click", function() {
			point1b.openInfoWindowHtml(html1)});
		map.addOverlay(point1b);
	

		// Autohaus Lutz, tulln, nö
		var point2 = new GLatLng(48.312748, 16.087715);
		var html2 = "<h5>Autohaus LUTZ<br>Drachengas</h5>Landstraße 57<br />3430 Tulln<br />Niederösterreich"
		var point2b = new GMarker(point2, icon);
		GEvent.addListener(point2b, "click", function() {
			point2b.openInfoWindowHtml(html2)});		
		map.addOverlay(point2b);

		// Gasfahrzeuge Holzer, weiz, steiermark
		var point3 = new GLatLng(47.1962500, 15.687888);
		var html3 = "<h5>Gasfahrzeuge Holzer</h5>Etzersdorf 112<br />8160 Weiz<br />Steiermark"
		var point3b = new GMarker(point3, icon);
		GEvent.addListener(point3b, "click", function() {
			point3b.openInfoWindowHtml(html3)});		
		map.addOverlay(point3b);
		
		// Schedl Energie + Technik GmbH
		var point4 = new GLatLng(46.826203, 12.794670);
		var html4 = "<h5>Schedl Energie + Technik GmbH</h5>Südbahnstraße 3<br />9900 Lienz<br />Osttirol"
		var point4b = new GMarker(point4, icon);
		GEvent.addListener(point4b, "click", function() {
			point4b.openInfoWindowHtml(html4)});		
		map.addOverlay(point4b);		

		// AUTOGAS GMBH
		var point5 = new GLatLng(48.360052, 16.353739);
		var html5 = "<h5>AUTOGAS GMBH</h5>Flagastraße 1<br />2100 Leobendorf bei Wien<br />Wien"
		var point5b = new GMarker(point5, icon);
		GEvent.addListener(point5b, "click", function() {
			point5b.openInfoWindowHtml(html5)});		
		map.addOverlay(point5b);		

		// A.M.G Chrysler, baden, nö
		var point6 = new GLatLng(48.002074, 16.245260);
		var html6 = "<h5>Autohaus A.M.G. Schörghofer<br></h5>Waltersdorfer Straße 8-10<br />2500 Baden bei Wien<br />Niederösterreich"
		var point6b = new GMarker(point6, icon);
		GEvent.addListener(point6b, "click", function() {
			point6b.openInfoWindowHtml(html6)});		
		map.addOverlay(point6b);


		// RMS Engineering GmbH Rainer DAGN, Kössen,Tirol
		var point7 = new GLatLng(47.661903, 12.424065);
		var html7 = "<h5> RMS Engineering GmbH Rainer DAGN<br></h5>Kaltenbach 17<br />6345 Kössen<br />Tirol"
		var point7b = new GMarker(point7, icon);
		GEvent.addListener(point7b, "click", function() {
			point7b.openInfoWindowHtml(html7)});		
		map.addOverlay(point7b);

