	var map = null;
	var center = new GLatLng(49.0306652257167,6.74835205078125);
	var initZoom = 9;
	var id = '';
	var clickMark = false;
	
	//Création de marker pour les fiches
	function createMarker(point, mess, ico) {
		var infoTabs = [
						new GInfoWindowTab("Nom", mess)
						];
		var marker = new GMarker(point, ico);
		GEvent.addListener(marker, "click", function() {
			clickMark = true;
			marker.openInfoWindowTabsHtml(infoTabs);
		});
		GEvent.addListener(marker, "infowindowclose", function() {
			clickMark = false;
		});
		return marker;
	}
	
	//Création de marker pour l'OT avec les coordonnées
	function createMarkerOT(point, mess, mess2, ico) {
		var infoTabs = [
						new GInfoWindowTab("Nom", mess),
						new GInfoWindowTab("Coordonnées", mess2)
						];
		var marker = new GMarker(point, ico);
		GEvent.addListener(marker, "click", function() {
			clickMark = true;
			marker.openInfoWindowTabsHtml(infoTabs);
		});
		GEvent.addListener(marker, "infowindowclose", function() {
			clickMark = false;
		});
		return marker;
	}
	
	function showAddress(address,mess,mess2) {
	 // alert(address);
	 if(mess == "") mess = address;
	 if(mess2 == "") mess2 = address;
	  var geocoder = new GClientGeocoder();
	  geocoder.getLatLng(
		address + " France",
		function(point) {
		  if (!point) {
			alert("Coordonnées inconnues");
		  } else {
			map.setCenter(point, 14);
			map.addOverlay(createMarker(point, mess, mess2));
		  }
		}
	  );
	}
	
	function showPoint(cat){
		//alert(cat);
		map.clearOverlays();
		administrative();
		var tmpCat = convCatTUrl(cat);
		//alert("http://"+gUrl+"/_includes/google-maps/mnet-gMaps.asp?"+tmpCat);
		afficheResultat(tmpCat,cat,'','','');
	}
	function afficheResultat(paramsUrl,cat,cLat,cLng,proxim){
		GDownloadUrl("http://"+gUrl+"/_includes/google-maps/mnet-gMaps.asp?"+paramsUrl,
						function(data, responseCode) {
							var xml = GXml.parse(data);
							//var contenu_html = xml.documentElement.getElementsByTagName("contenu");
							var markers = xml.documentElement.getElementsByTagName("marker");
							if(markers.length == 0) alert('Nous ne parvenons pas a localiser les prestataires de votre choix !');
							//alert(tmpCat.substring(5));
							if(document.getElementById('nb') != null){
								document.getElementById('nb').innerHTML = 'Nombre de résultats : ' + markers.length;
							}
							//alert(markers.length);
							for (var i = 0; i < markers.length; i++) {
								var point = new GLatLng((markers[i].getAttribute("lat")),
								(markers[i].getAttribute("lng")));

								var icontype = markers[i].getAttribute("icontype");
								var Ref = markers[i].getAttribute("label");

								var html = decode(markers[i].getElementsByTagName("infowindow"));
								if(proxim == 'p') document.getElementById('proximite').innerHTML += html + '<hr>';
								//alert(icontype);
								//var html2 = decode(markers[i].getElementsByTagName("infowindow2"))
								map.addOverlay(createMarker(point,html,iconStyle(icontype)));//, icontype,cat,i
							}
							if(markers.length == 1 && proxim == '') map.setCenter(point, 16);
							if(cLat != '' && cLng != ''){
								var point = new GLatLng((cLat),(cLng));
								map.setCenter(point);
							}
						}
					);
		if(idObjTour != '') createMarkerApn();
	}
    function load() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"),{mapTypes:[G_NORMAL_MAP,G_HYBRID_MAP,G_SATELLITE_MAP,G_PHYSICAL_MAP]});
		map.addControl(new GSmallMapControl());
        map.addControl(new GOverviewMapControl());
        map.addControl(new GMapTypeControl());
		
		GEvent.addListener(map, "moveend", 
			function() {
				var tmpcenter = map.getCenter();
				//document.getElementById("message").innerHTML = tmpcenter.toString();
				/*if(tmpcenter.lng()>7.65) map.setCenter(center, initZoom);
				if(tmpcenter.lng()<5.88) map.setCenter(center, initZoom);
				if(tmpcenter.lat()>49.52) map.setCenter(center, initZoom);
				if(tmpcenter.lat()<48.52) map.setCenter(center, initZoom);*/
			});
		
		GEvent.addListener(map, "zoomend", function() {
				maxZoom = 15;
				var zoomSelect = map.getZoom();
				//alert(zoomSelect);
				//if(zoomSelect<maxZoom) map.setZoom(maxZoom);
			});
		
		map.setCenter(center, initZoom);
		
		// poisitionne le CDT
		var point = new GLatLng(49.122623,6.175516000000001);
		map.addOverlay(createMarkerOT(point,"<span  class=\"TextArialOrange11\">Comité Départemental de Tourisme de la Moselle</span><br/><img src='http://www.moselle-tourisme.com/_includes/google-maps/img/logo-cdt-moselle.jpg'>","<span  class=\"TextArialOrange11\">Comité Départemental de Tourisme de la Moselle</span><span  class=\"TextArialNoir11\"><br/>2-4 rue du Pont Moreau<br/>57003 Metz<br/>Tél : +33 (0)3 87 37 57 80<br/>Fax : +33 (0)3 87 37 58 84<br/><a href=\"mailto:info@moselle-tourisme.com\" class=\"TextArialOrange11\">info@moselle-tourisme.com</a><br/><a href=\"http://www.moselle-tourisme.com\" class=\"TextArialOrange11\">www.moselle-tourisme.com</a></span>",iconStyle('info')));
		administrative();
      }
    }
	function iconStyle(cat){
		var tmpCat = cat;
		if(tmpCat == '') tmpCat = 'default';
		if(!isNaN(cat)) tmpCat = 'default';
		if(id == cat) tmpCat = 'default';
		if(cat.lastIndexOf(",")>1) tmpCat = 'default';
		if(tmpCat == 'parcs-loisirs' || tmpCat == 'detente-famille' || tmpCat == 'pleine-nature' || tmpCat == 'sensation-forte' || tmpCat == 'loisirs' || tmpCat == 'loisirs-nautique' || tmpCat == 'tourisme-fluvial') tmpCat = 'Activites';
		if(tmpCat == 'musees' || tmpCat == 'sites-monuments' || tmpCat == 'artisanat' || tmpCat == 'parcs-jardins' || tmpCat == 'patrimoine-naturel') tmpCat = 'Visiter';
		var icon = new GIcon();
		icon.image = "http://www.moselle-tourisme.com/_includes/google-maps/img/gm"+tmpCat+".png";
		icon.shadow = "http://www.moselle-tourisme.com/_includes/google-maps/img/gm-shadow.png";
		icon.iconSize = new GSize(20, 40);
		icon.shadowSize = new GSize(40, 40);
		icon.iconAnchor = new GPoint(10, 40);
		icon.infoWindowAnchor = new GPoint(10, 1);
		icon.infoShadowAnchor = new GPoint(20, 1);
		return icon;
	}
	function decode(a) {
		var b = "";
		if (a.length > 0) {
			if (a[0]) {
				if (a[0].firstChild) {
				b = a[0].firstChild.nodeValue;
			}
		}
	}
	return b;
	}
	function administrative(){
		var points = [];
		points.push(new GLatLng(49.19353831000001,6.8501495));
		points.push(new GLatLng(49.20048213,6.85118433));
		points.push(new GLatLng(49.21127791,6.8376672));
		points.push(new GLatLng(49.2216548,6.858456050000002));
		points.push(new GLatLng(49.21262358,6.8799987));
		points.push(new GLatLng(49.21113553,6.884826280000001));
		points.push(new GLatLng(49.2098103,6.889365790000001));
		points.push(new GLatLng(49.21021833,6.894305900000001));
		points.push(new GLatLng(49.22310386000001,6.924302410000001));
		points.push(new GLatLng(49.22215170000001,6.934824950000001));
		points.push(new GLatLng(49.2165748,6.940371480000001));
		points.push(new GLatLng(49.21379631,6.94358482));
		points.push(new GLatLng(49.20866272,6.950227040000002));
		points.push(new GLatLng(49.2060865,6.95355505));
		points.push(new GLatLng(49.20382577000001,6.95756765));
		points.push(new GLatLng(49.20867098,6.97658907));
		points.push(new GLatLng(49.19747847,6.996661860000001));
		points.push(new GLatLng(49.19430733000001,6.998819250000001));
		points.push(new GLatLng(49.19376544000001,7.008108890000001));
		points.push(new GLatLng(49.18865643,7.013096790000001));
		points.push(new GLatLng(49.19129179,7.01544977));
		points.push(new GLatLng(49.19275016,7.020280540000001));
		points.push(new GLatLng(49.18828173,7.033715940000001));
		points.push(new GLatLng(49.17133874000002,7.02828512));
		points.push(new GLatLng(49.13193156000001,7.046385050000001));
		points.push(new GLatLng(49.12847613,7.045670060000001));
		points.push(new GLatLng(49.11840437000002,7.04587429));
		points.push(new GLatLng(49.11256869,7.057586210000001));
		points.push(new GLatLng(49.11524649,7.06704673));
		points.push(new GLatLng(49.12477203000001,7.072008480000001));
		points.push(new GLatLng(49.12917029000001,7.08595142));
		points.push(new GLatLng(49.13152411,7.089695230000002));
		points.push(new GLatLng(49.14090541000001,7.08308059));
		points.push(new GLatLng(49.15199143,7.082045220000001));
		points.push(new GLatLng(49.15464713,7.103109170000001));
		points.push(new GLatLng(49.15044955,7.11085841));
		points.push(new GLatLng(49.14540768,7.10365374));
		points.push(new GLatLng(49.13871345,7.104253940000001));
		points.push(new GLatLng(49.14122697000001,7.12494539));
		points.push(new GLatLng(49.13564808,7.130957210000001));
		points.push(new GLatLng(49.13220626,7.131706950000002));
		points.push(new GLatLng(49.12977993,7.13566506));
		points.push(new GLatLng(49.12079995000001,7.15881857));
		points.push(new GLatLng(49.1269427,7.16409715));
		points.push(new GLatLng(49.12965788000001,7.18488766));
		points.push(new GLatLng(49.12210963,7.196083230000001));
		points.push(new GLatLng(49.11520239,7.19835312));
		points.push(new GLatLng(49.12068487000001,7.20389047));
		points.push(new GLatLng(49.12492711,7.2111375));
		points.push(new GLatLng(49.12973453000001,7.245462640000001));
		points.push(new GLatLng(49.12741543,7.24912398));
		points.push(new GLatLng(49.1232894,7.279347950000001));
		points.push(new GLatLng(49.11760852000001,7.28369971));
		points.push(new GLatLng(49.11519000000001,7.29342503));
		points.push(new GLatLng(49.12153839,7.3020604));
		points.push(new GLatLng(49.12409937000001,7.304131720000001));
		points.push(new GLatLng(49.13656727,7.313704200000001));
		points.push(new GLatLng(49.14346572000001,7.32598088));
		points.push(new GLatLng(49.14520241000001,7.362792660000001));
		points.push(new GLatLng(49.14850344000001,7.36244232));
		points.push(new GLatLng(49.16174993,7.36731732));
		points.push(new GLatLng(49.17203395000001,7.36619682));
		points.push(new GLatLng(49.17429718,7.37637247));
		points.push(new GLatLng(49.17529661,7.381523920000001));
		points.push(new GLatLng(49.18253286,7.438326470000001));
		points.push(new GLatLng(49.17274466,7.441517200000002));
		points.push(new GLatLng(49.16578839,7.43825968));
		points.push(new GLatLng(49.16685721,7.45351099));
		points.push(new GLatLng(49.16415886000001,7.45681269));
		points.push(new GLatLng(49.1695822,7.490529000000001));
		points.push(new GLatLng(49.15992889,7.49388743));
		points.push(new GLatLng(49.14992581000001,7.50346779));
		points.push(new GLatLng(49.13996253,7.48959601));
		points.push(new GLatLng(49.13655778,7.48959846));
		points.push(new GLatLng(49.13358566,7.498592800000002));
		points.push(new GLatLng(49.12416185,7.504960110000001));
		points.push(new GLatLng(49.11879537,7.51785272));
		points.push(new GLatLng(49.10890271,7.52148191));
		points.push(new GLatLng(49.10584524000001,7.523874930000002));
		points.push(new GLatLng(49.09716216000001,7.531201740000002));
		points.push(new GLatLng(49.08240298000001,7.558875390000002));
		points.push(new GLatLng(49.07992828,7.56850916));
		points.push(new GLatLng(49.08176884,7.60471228));
		points.push(new GLatLng(49.07075419000001,7.63079646));
		points.push(new GLatLng(49.05705101,7.632322710000001));
		points.push(new GLatLng(49.05418894,7.63530398));
		points.push(new GLatLng(49.04814055,7.639313980000001));
		points.push(new GLatLng(49.03679981,7.62836777));
		points.push(new GLatLng(49.03374097,7.62625971));
		points.push(new GLatLng(49.03040801000001,7.61793285));
		points.push(new GLatLng(49.02202908000001,7.610666540000002));
		points.push(new GLatLng(49.01993466,7.606904470000001));
		points.push(new GLatLng(49.01043763,7.6082229));
		points.push(new GLatLng(48.99105032000001,7.58873967));
		points.push(new GLatLng(48.98812382,7.59117917));
		points.push(new GLatLng(48.98486575,7.592353070000001));
		points.push(new GLatLng(48.97911019,7.586431250000001));
		points.push(new GLatLng(48.96925883000001,7.58147685));
		points.push(new GLatLng(48.96606818,7.583575660000001));
		points.push(new GLatLng(48.96163331,7.579952090000001));
		points.push(new GLatLng(48.94241061000002,7.553554150000002));
		points.push(new GLatLng(48.93622022,7.556702870000001));
		points.push(new GLatLng(48.9336494,7.536402580000001));
		points.push(new GLatLng(48.94196024,7.527777040000002));
		points.push(new GLatLng(48.94326942,7.513210410000002));
		points.push(new GLatLng(48.94365689,7.508435080000001));
		points.push(new GLatLng(48.95008638,7.48703688));
		points.push(new GLatLng(48.96151726,7.478013890000001));
		points.push(new GLatLng(48.96489783,7.453675580000001));
		points.push(new GLatLng(48.96799147,7.451656560000001));
		points.push(new GLatLng(48.96607199,7.44748634));
		points.push(new GLatLng(48.95822469000001,7.40453523));
		points.push(new GLatLng(48.95273626000001,7.392333510000002));
		points.push(new GLatLng(48.95121736,7.3799338));
		points.push(new GLatLng(48.95144074,7.375716900000001));
		points.push(new GLatLng(48.95357127000001,7.368130580000001));
		points.push(new GLatLng(48.95527078000001,7.363920290000001));
		points.push(new GLatLng(48.95446986,7.355145890000001));
		points.push(new GLatLng(48.95281452,7.350828540000001));
		points.push(new GLatLng(48.948455,7.34337834));
		points.push(new GLatLng(48.94826236,7.33357061));
		points.push(new GLatLng(48.94340141,7.32686713));
		points.push(new GLatLng(48.94532307,7.32269291));
		points.push(new GLatLng(48.95338441,7.30647347));
		points.push(new GLatLng(48.95666709,7.30549004));
		points.push(new GLatLng(48.9565373,7.290217800000001));
		points.push(new GLatLng(48.95923248,7.29036667));
		points.push(new GLatLng(48.96711599,7.29045209));
		points.push(new GLatLng(48.97264434000001,7.29395008));
		points.push(new GLatLng(48.98772747,7.23815242));
		points.push(new GLatLng(48.98118841,7.21426493));
		points.push(new GLatLng(48.98011139,7.209334620000002));
		points.push(new GLatLng(48.98298885,7.206979470000001));
		points.push(new GLatLng(48.99379737000001,7.195862110000002));
		points.push(new GLatLng(48.99379315000001,7.18622936));
		points.push(new GLatLng(48.99646790000001,7.18379723));
		points.push(new GLatLng(49.00613603,7.17360703));
		points.push(new GLatLng(49.00506678,7.169331570000001));
		points.push(new GLatLng(49.00195737,7.161625190000001));
		points.push(new GLatLng(49.00526198,7.160702240000002));
		points.push(new GLatLng(49.00543105000001,7.13018701));
		points.push(new GLatLng(49.02324518000001,7.122380080000002));
		points.push(new GLatLng(49.02650702,7.12298362));
		points.push(new GLatLng(49.0311106,7.1163881));
		points.push(new GLatLng(49.03724328000001,7.11949055));
		points.push(new GLatLng(49.03978853000001,7.116630250000001));
		points.push(new GLatLng(49.04536631000001,7.106368780000001));
		points.push(new GLatLng(49.04866162,7.106810300000002));
		points.push(new GLatLng(49.06123645,7.10188908));
		points.push(new GLatLng(49.06473752000001,7.11385902));
		points.push(new GLatLng(49.06684148,7.117300950000001));
		points.push(new GLatLng(49.07791056,7.099361));
		points.push(new GLatLng(49.07041377000001,7.089132530000001));
		points.push(new GLatLng(49.07214547,7.07476806));
		points.push(new GLatLng(49.06978149,7.07104342));
		points.push(new GLatLng(49.06341435,7.068609710000001));
		points.push(new GLatLng(49.05727078,7.072347430000001));
		points.push(new GLatLng(49.05481073000001,7.073998180000001));
		points.push(new GLatLng(49.05038515,7.07867316));
		points.push(new GLatLng(49.03317820000001,7.057856120000001));
		points.push(new GLatLng(49.03064727,7.05492761));
		points.push(new GLatLng(49.01593375,7.04793072));
		points.push(new GLatLng(49.00852251000001,7.052591740000001));
		points.push(new GLatLng(48.99993419,7.04686836));
		points.push(new GLatLng(48.98988454,7.033695240000002));
		points.push(new GLatLng(48.97668854000001,7.038677600000002));
		points.push(new GLatLng(48.96950548,7.02790665));
		points.push(new GLatLng(48.95607497,7.032237));
		points.push(new GLatLng(48.95606462,7.028818400000001));
		points.push(new GLatLng(48.95617222,7.02539684));
		points.push(new GLatLng(48.95702603,7.02176947));
		points.push(new GLatLng(48.95778265000001,7.01809218));
		points.push(new GLatLng(48.96029623,6.992754070000001));
		points.push(new GLatLng(48.95885787000001,6.98855059));
		points.push(new GLatLng(48.95278241,6.987827710000001));
		points.push(new GLatLng(48.9497917,6.986491200000001));
		points.push(new GLatLng(48.94688768000001,6.98639412));
		points.push(new GLatLng(48.9419625,6.98179675));
		points.push(new GLatLng(48.93280764,6.977872970000001));
		points.push(new GLatLng(48.92654110000001,6.965834540000001));
		points.push(new GLatLng(48.92559944,6.960872990000002));
		points.push(new GLatLng(48.93142649,6.94826472));
		points.push(new GLatLng(48.93468827000001,6.94679283));
		points.push(new GLatLng(48.93482534,6.944412450000002));
		points.push(new GLatLng(48.92462298,6.94145466));
		points.push(new GLatLng(48.92007105,6.95509237));
		points.push(new GLatLng(48.90730416,6.96349944));
		points.push(new GLatLng(48.89423131,6.957471800000001));
		points.push(new GLatLng(48.89078099,6.9723307));
		points.push(new GLatLng(48.89156577,6.982709040000001));
		points.push(new GLatLng(48.89138654,6.98799173));
		points.push(new GLatLng(48.87973648,7.0265707));
		points.push(new GLatLng(48.86494387000001,7.055022190000001));
		points.push(new GLatLng(48.85895319000001,7.050561750000001));
		points.push(new GLatLng(48.86391679000001,7.07927441));
		points.push(new GLatLng(48.8631171,7.08916328));
		points.push(new GLatLng(48.86290819000001,7.09416611));
		points.push(new GLatLng(48.85424164,7.09878715));
		points.push(new GLatLng(48.84991085,7.092481550000001));
		points.push(new GLatLng(48.84841715,7.08840166));
		points.push(new GLatLng(48.84749129000001,7.085206240000001));
		points.push(new GLatLng(48.84761274,7.08171122));
		points.push(new GLatLng(48.84742886000001,7.05713803));
		points.push(new GLatLng(48.846909,7.05208401));
		points.push(new GLatLng(48.83869152,7.05291859));
		points.push(new GLatLng(48.83604254,7.054327890000001));
		points.push(new GLatLng(48.82346737,7.0497064));
		points.push(new GLatLng(48.82066204000001,7.047132040000001));
		points.push(new GLatLng(48.81775625000001,7.04977354));
		points.push(new GLatLng(48.8148587,7.05245504));
		points.push(new GLatLng(48.81359127,7.08091557));
		points.push(new GLatLng(48.81193118,7.08505816));
		points.push(new GLatLng(48.80619627000001,7.08796826));
		points.push(new GLatLng(48.80129915000001,7.07056342));
		points.push(new GLatLng(48.79935098,7.06680099));
		points.push(new GLatLng(48.78806933,7.07514763));
		points.push(new GLatLng(48.78631126,7.079265770000002));
		points.push(new GLatLng(48.79164171,7.08555858));
		points.push(new GLatLng(48.79563604,7.0996201));
		points.push(new GLatLng(48.79647275000001,7.104577610000001));
		points.push(new GLatLng(48.79789012000001,7.108524240000001));
		points.push(new GLatLng(48.79895642000001,7.11716844));
		points.push(new GLatLng(48.79974245,7.12202516));
		points.push(new GLatLng(48.8010898,7.12657813));
		points.push(new GLatLng(48.80379612,7.123326150000001));
		points.push(new GLatLng(48.81039457,7.123170420000001));
		points.push(new GLatLng(48.81567515,7.129753960000001));
		points.push(new GLatLng(48.81751986,7.139823690000001));
		points.push(new GLatLng(48.82226472,7.14740887));
		points.push(new GLatLng(48.83557098000001,7.14212264));
		points.push(new GLatLng(48.84461772,7.14887016));
		points.push(new GLatLng(48.84204181000001,7.17352755));
		points.push(new GLatLng(48.84903745,7.18085251));
		points.push(new GLatLng(48.85039342,7.18492252));
		points.push(new GLatLng(48.83921547,7.19448988));
		points.push(new GLatLng(48.83463111,7.18789475));
		points.push(new GLatLng(48.82786178,7.198620780000001));
		points.push(new GLatLng(48.82698077,7.20344934));
		points.push(new GLatLng(48.82616255000001,7.21199192));
		points.push(new GLatLng(48.82082574,7.216085690000001));
		points.push(new GLatLng(48.81910654,7.22001484));
		points.push(new GLatLng(48.82502787000001,7.21945434));
		points.push(new GLatLng(48.82813176,7.21776909));
		points.push(new GLatLng(48.82850839,7.227012290000001));
		points.push(new GLatLng(48.81737025,7.245337450000001));
		points.push(new GLatLng(48.81992704,7.254484580000001));
		points.push(new GLatLng(48.82219980000001,7.25812327));
		points.push(new GLatLng(48.82031517,7.260141330000001));
		points.push(new GLatLng(48.81858867,7.262471550000002));
		points.push(new GLatLng(48.8175919,7.258272220000002));
		points.push(new GLatLng(48.81005227,7.24525686));
		points.push(new GLatLng(48.80783475000001,7.24923392));
		points.push(new GLatLng(48.80414496,7.25788216));
		points.push(new GLatLng(48.79757412000001,7.26087098));
		points.push(new GLatLng(48.79914196,7.264086990000001));
		points.push(new GLatLng(48.80252726,7.27016166));
		points.push(new GLatLng(48.80046825,7.274246310000001));
		points.push(new GLatLng(48.79392867,7.290919680000001));
		points.push(new GLatLng(48.78887207,7.29102416));
		points.push(new GLatLng(48.78631843,7.29071213));
		points.push(new GLatLng(48.76755833,7.30840337));
		points.push(new GLatLng(48.76725965,7.31336249));
		points.push(new GLatLng(48.76410621,7.31102888));
		points.push(new GLatLng(48.75222886,7.29203501));
		points.push(new GLatLng(48.73154581,7.28615408));
		points.push(new GLatLng(48.71421938000002,7.26836222));
		points.push(new GLatLng(48.70048214000001,7.264745470000001));
		points.push(new GLatLng(48.69781729,7.26209824));
		points.push(new GLatLng(48.69212809,7.242282730000001));
		points.push(new GLatLng(48.6896571,7.245191790000001));
		points.push(new GLatLng(48.67286451,7.25725945));
		points.push(new GLatLng(48.67151765000001,7.26171462));
		points.push(new GLatLng(48.66232972,7.26629647));
		points.push(new GLatLng(48.66239651,7.271183790000001));
		points.push(new GLatLng(48.66023030000001,7.299569940000001));
		points.push(new GLatLng(48.66022641000001,7.30437026));
		points.push(new GLatLng(48.64561898,7.290564480000001));
		points.push(new GLatLng(48.63340684,7.27241604));
		points.push(new GLatLng(48.62433177000001,7.275998050000001));
		points.push(new GLatLng(48.59655809,7.25774787));
		points.push(new GLatLng(48.59173744000001,7.26515374));
		points.push(new GLatLng(48.59006245,7.26084063));
		points.push(new GLatLng(48.58869316000001,7.25629873));
		points.push(new GLatLng(48.58626510000001,7.253584960000001));
		points.push(new GLatLng(48.57375318,7.24124731));
		points.push(new GLatLng(48.55469681,7.220296540000001));
		points.push(new GLatLng(48.55218598,7.21151421));
		points.push(new GLatLng(48.55272059,7.20137554));
		points.push(new GLatLng(48.54926214,7.19326464));
		points.push(new GLatLng(48.5400568,7.18954658));
		points.push(new GLatLng(48.53729226,7.18711924));
		points.push(new GLatLng(48.53141266,7.17082665));
		points.push(new GLatLng(48.52871414,7.168516700000001));
		points.push(new GLatLng(48.52761248,7.167925110000001));
		points.push(new GLatLng(48.52813217000001,7.16269978));
		points.push(new GLatLng(48.53044875000001,7.152716690000001));
		points.push(new GLatLng(48.52836509,7.137961000000001));
		points.push(new GLatLng(48.53682415,7.115683510000002));
		points.push(new GLatLng(48.52981197,7.09171808));
		points.push(new GLatLng(48.53644013000001,7.07937287));
		points.push(new GLatLng(48.53725355,7.074808850000001));
		points.push(new GLatLng(48.53921682,7.05724842));
		points.push(new GLatLng(48.54015314,7.06221551));
		points.push(new GLatLng(48.54170828000001,7.082523950000001));
		points.push(new GLatLng(48.55147862,7.057125820000001));
		points.push(new GLatLng(48.56231131000001,7.044727960000001));
		points.push(new GLatLng(48.58044126,7.034259960000001));
		points.push(new GLatLng(48.58025034,7.02908533));
		points.push(new GLatLng(48.58092120000001,7.01919732));
		points.push(new GLatLng(48.59387289,6.995410120000001));
		points.push(new GLatLng(48.60411571,7.01517287));
		points.push(new GLatLng(48.61186145,7.008752910000001));
		points.push(new GLatLng(48.60993446000001,6.99320659));
		points.push(new GLatLng(48.60951541,6.991268010000001));
		points.push(new GLatLng(48.61211452000001,6.98768575));
		points.push(new GLatLng(48.60874097,6.961855960000001));
		points.push(new GLatLng(48.6097578,6.95726151));
		points.push(new GLatLng(48.61508606000001,6.939754020000001));
		points.push(new GLatLng(48.61802339,6.942485480000001));
		points.push(new GLatLng(48.63557096,6.93001818));
		points.push(new GLatLng(48.63475081,6.92536756));
		points.push(new GLatLng(48.63055504,6.918871210000001));
		points.push(new GLatLng(48.62434072000001,6.91750922));
		points.push(new GLatLng(48.61985584,6.905406210000001));
		points.push(new GLatLng(48.62160633,6.9011078));
		points.push(new GLatLng(48.62502201,6.89331083));
		points.push(new GLatLng(48.6209655,6.857483180000002));
		points.push(new GLatLng(48.62386997,6.84790093));
		points.push(new GLatLng(48.629744,6.84284095));
		points.push(new GLatLng(48.63249762,6.842644670000001));
		points.push(new GLatLng(48.63744989,6.83932397));
		points.push(new GLatLng(48.64372911,6.83448698));
		points.push(new GLatLng(48.64684467,6.81381814));
		points.push(new GLatLng(48.64274173,6.782638370000001));
		points.push(new GLatLng(48.64470004,6.780115580000001));
		points.push(new GLatLng(48.64793958000001,6.774128530000001));
		points.push(new GLatLng(48.65051613,6.77675332));
		points.push(new GLatLng(48.65350433,6.777497530000001));
		points.push(new GLatLng(48.65211985,6.76396778));
		points.push(new GLatLng(48.65544820000001,6.76283776));
		points.push(new GLatLng(48.65813655,6.76028059));
		points.push(new GLatLng(48.66969059,6.7599312));
		points.push(new GLatLng(48.66989727000001,6.75513694));
		points.push(new GLatLng(48.66724394000001,6.75241061));
		points.push(new GLatLng(48.66760583,6.738563870000001));
		points.push(new GLatLng(48.66444014000001,6.72609119));
		points.push(new GLatLng(48.6668585,6.72372646));
		points.push(new GLatLng(48.67065593000001,6.708687190000001));
		points.push(new GLatLng(48.67241927000001,6.70432257));
		points.push(new GLatLng(48.67315471000001,6.69436627));
		points.push(new GLatLng(48.68215513,6.68878511));
		points.push(new GLatLng(48.66736061,6.66896791));
		points.push(new GLatLng(48.67105322,6.666434720000001));
		points.push(new GLatLng(48.67306605,6.6705034));
		points.push(new GLatLng(48.68646106000001,6.6707633));
		points.push(new GLatLng(48.69185181,6.67474809));
		points.push(new GLatLng(48.70609671,6.6615876));
		points.push(new GLatLng(48.70776720000001,6.657741310000001));
		points.push(new GLatLng(48.70245482000001,6.642421060000002));
		points.push(new GLatLng(48.70314296000001,6.63759555));
		points.push(new GLatLng(48.71108529000001,6.62907126));
		points.push(new GLatLng(48.71473795,6.6166676));
		points.push(new GLatLng(48.71571651,6.59898231));
		points.push(new GLatLng(48.71878493000001,6.59851298));
		points.push(new GLatLng(48.73250249000001,6.58950071));
		points.push(new GLatLng(48.73318363,6.584303910000001));
		points.push(new GLatLng(48.74944982000001,6.564862720000001));
		points.push(new GLatLng(48.75613366,6.56219419));
		points.push(new GLatLng(48.75464367,6.54762958));
		points.push(new GLatLng(48.75378242000001,6.54399322));
		points.push(new GLatLng(48.75141555,6.53864251));
		points.push(new GLatLng(48.74961866000001,6.534221750000001));
		points.push(new GLatLng(48.75277619000001,6.51945044));
		points.push(new GLatLng(48.74886625000001,6.51139082));
		points.push(new GLatLng(48.74851968000001,6.506626350000001));
		points.push(new GLatLng(48.75439503000001,6.50799657));
		points.push(new GLatLng(48.76498451000001,6.490398800000002));
		points.push(new GLatLng(48.76588513,6.48548902));
		points.push(new GLatLng(48.76734603,6.46136871));
		points.push(new GLatLng(48.76590484000001,6.457795990000002));
		points.push(new GLatLng(48.76591382000002,6.45361689));
		points.push(new GLatLng(48.76925852,6.454236140000001));
		points.push(new GLatLng(48.7790996,6.451271750000001));
		points.push(new GLatLng(48.78100065,6.4420799));
		points.push(new GLatLng(48.78912293000001,6.43311833));
		points.push(new GLatLng(48.78769195000001,6.42867541));
		points.push(new GLatLng(48.77478362,6.39488188));
		points.push(new GLatLng(48.78062693,6.38874748));
		points.push(new GLatLng(48.78078272,6.383911530000001));
		points.push(new GLatLng(48.78472652,6.37088583));
		points.push(new GLatLng(48.78295057,6.36670304));
		points.push(new GLatLng(48.7796633,6.35856311));
		points.push(new GLatLng(48.79207068,6.355465660000001));
		points.push(new GLatLng(48.79536647,6.35487635));
		points.push(new GLatLng(48.80395850000001,6.34748998));
		points.push(new GLatLng(48.81059915,6.35737934));
		points.push(new GLatLng(48.81274786,6.35371551));
		points.push(new GLatLng(48.81105360000001,6.33934663));
		points.push(new GLatLng(48.81296454,6.33607252));
		points.push(new GLatLng(48.82048464,6.333763220000001));
		points.push(new GLatLng(48.82329557,6.33152665));
		points.push(new GLatLng(48.8211771,6.308795000000001));
		points.push(new GLatLng(48.82243035,6.30467978));
		points.push(new GLatLng(48.82427662,6.30112759));
		points.push(new GLatLng(48.82938926,6.31833833));
		points.push(new GLatLng(48.82575486,6.33198869));
		points.push(new GLatLng(48.83351663,6.33964797));
		points.push(new GLatLng(48.83463986,6.33482717));
		points.push(new GLatLng(48.83573860000001,6.33000565));
		points.push(new GLatLng(48.83694607,6.316260330000001));
		points.push(new GLatLng(48.83378596,6.30741493));
		points.push(new GLatLng(48.84369234,6.28802397));
		points.push(new GLatLng(48.84945426,6.28547703));
		points.push(new GLatLng(48.85181648,6.29509317));
		points.push(new GLatLng(48.85254039,6.30011072));
		points.push(new GLatLng(48.85535559,6.29910002));
		points.push(new GLatLng(48.86650450000001,6.29747008));
		points.push(new GLatLng(48.86351384000002,6.310253370000001));
		points.push(new GLatLng(48.87278727000001,6.31092366));
		points.push(new GLatLng(48.87536585,6.3080792));
		points.push(new GLatLng(48.87828697,6.308453210000001));
		points.push(new GLatLng(48.88249004,6.29738251));
		points.push(new GLatLng(48.89223228,6.31150146));
		points.push(new GLatLng(48.89465695,6.321104390000001));
		points.push(new GLatLng(48.89595609,6.325844670000001));
		points.push(new GLatLng(48.90489790000001,6.32751642));
		points.push(new GLatLng(48.90753080000001,6.324402160000001));
		points.push(new GLatLng(48.91178113000002,6.31084535));
		points.push(new GLatLng(48.92109198000001,6.31119293));
		points.push(new GLatLng(48.91953098000001,6.307001420000001));
		points.push(new GLatLng(48.91634262000001,6.288408420000001));
		points.push(new GLatLng(48.9192374,6.28794672));
		points.push(new GLatLng(48.92770962000001,6.2878015));
		points.push(new GLatLng(48.92843916000001,6.28395152));
		points.push(new GLatLng(48.92799403,6.27703491));
		points.push(new GLatLng(48.93333330000001,6.271239630000001));
		points.push(new GLatLng(48.93280159,6.26687259));
		points.push(new GLatLng(48.93353722000001,6.26257039));
		points.push(new GLatLng(48.93175404,6.258243820000002));
		points.push(new GLatLng(48.92490685,6.24730489));
		points.push(new GLatLng(48.92495257000001,6.23709445));
		points.push(new GLatLng(48.92791625000001,6.23479151));
		points.push(new GLatLng(48.92932987,6.2251203));
		points.push(new GLatLng(48.93824878,6.22064136));
		points.push(new GLatLng(48.93961394,6.20577407));
		points.push(new GLatLng(48.93772014,6.20590562));
		points.push(new GLatLng(48.93715658,6.200810090000001));
		points.push(new GLatLng(48.93626559,6.17516316));
		points.push(new GLatLng(48.94217735,6.170425020000001));
		points.push(new GLatLng(48.94206283,6.165308140000001));
		points.push(new GLatLng(48.94372457,6.16146993));
		points.push(new GLatLng(48.93931346,6.150026290000001));
		points.push(new GLatLng(48.93334842000001,6.14973697));
		points.push(new GLatLng(48.93260483,6.14654127));
		points.push(new GLatLng(48.93307907000001,6.141552050000001));
		points.push(new GLatLng(48.93992663000001,6.12514565));
		points.push(new GLatLng(48.94938285000001,6.128256));
		points.push(new GLatLng(48.94944388,6.12321978));
		points.push(new GLatLng(48.95609833000001,6.124745210000001));
		points.push(new GLatLng(48.96725512,6.114234080000001));
		points.push(new GLatLng(48.96886896,6.099607030000001));
		points.push(new GLatLng(48.96790759,6.09471332));
		points.push(new GLatLng(48.96307524,6.08132706));
		points.push(new GLatLng(48.96476069,6.079194520000001));
		points.push(new GLatLng(48.96780582000001,6.07731049));
		points.push(new GLatLng(48.97274444,6.071039660000001));
		points.push(new GLatLng(48.97904468000001,6.07383188));
		points.push(new GLatLng(48.98103769,6.064763520000001));
		points.push(new GLatLng(48.97889237,6.06143794));
		points.push(new GLatLng(48.97750072000001,6.04343367));
		points.push(new GLatLng(48.98048962,6.041339440000001));
		points.push(new GLatLng(48.98480477,6.03389832));
		points.push(new GLatLng(48.98910336,6.0438145));
		points.push(new GLatLng(49.00195116,6.04320461));
		points.push(new GLatLng(49.0089586,6.04496538));
		points.push(new GLatLng(49.01494192000001,6.040881390000001));
		points.push(new GLatLng(49.0170307,6.03066222));
		points.push(new GLatLng(49.02459086000001,6.01948092));
		points.push(new GLatLng(49.03737767000001,6.0126483));
		points.push(new GLatLng(49.03586775,6.00909289));
		points.push(new GLatLng(49.03445041,6.00544851));
		points.push(new GLatLng(49.03521571000001,6.001617170000001));
		points.push(new GLatLng(49.03811823,5.99496806));
		points.push(new GLatLng(49.0398353,5.99206571));
		points.push(new GLatLng(49.04207177000001,5.985409500000001));
		points.push(new GLatLng(49.04341526,5.98118026));
		points.push(new GLatLng(49.04159433000001,5.97244618));
		points.push(new GLatLng(49.04653039000001,5.9669079));
		points.push(new GLatLng(49.04740087,5.95778513));
		points.push(new GLatLng(49.05005637,5.95564617));
		points.push(new GLatLng(49.0616896,5.95171175));
		points.push(new GLatLng(49.06493269,5.95036458));
		points.push(new GLatLng(49.06892156,5.93681644));
		points.push(new GLatLng(49.07210943,5.935204180000001));
		points.push(new GLatLng(49.07553286,5.93473089));
		points.push(new GLatLng(49.0805616,5.94158596));
		points.push(new GLatLng(49.09292357,5.925643800000001));
		points.push(new GLatLng(49.09962284,5.92780853));
		points.push(new GLatLng(49.10913372,5.93159463));
		points.push(new GLatLng(49.10880702,5.94782131));
		points.push(new GLatLng(49.10835842,5.96769757));
		points.push(new GLatLng(49.10824361000001,5.972663));
		points.push(new GLatLng(49.10789816,5.99373844));
		points.push(new GLatLng(49.11080823,6.002700430000001));
		points.push(new GLatLng(49.11392278000001,6.004977290000001));
		points.push(new GLatLng(49.11649224,6.002145290000001));
		points.push(new GLatLng(49.12756806000001,5.99061066));
		points.push(new GLatLng(49.13358975000001,5.99398475));
		points.push(new GLatLng(49.13799341000001,5.98615395));
		points.push(new GLatLng(49.14118546000001,5.98442082));
		points.push(new GLatLng(49.14400369,5.98226068));
		points.push(new GLatLng(49.14875444,5.99430688));
		points.push(new GLatLng(49.15448878,5.99032559));
		points.push(new GLatLng(49.15578068,5.99956443));
		points.push(new GLatLng(49.15336514000001,6.00648254));
		points.push(new GLatLng(49.153707,6.01088151));
		points.push(new GLatLng(49.16198231000001,6.01908399));
		points.push(new GLatLng(49.16494841000001,6.0279238));
		points.push(new GLatLng(49.16751222,6.031125350000001));
		points.push(new GLatLng(49.17191235000001,6.01733834));
		points.push(new GLatLng(49.18274198,6.005022290000001));
		points.push(new GLatLng(49.1848678,5.98518117));
		points.push(new GLatLng(49.18718264,5.9821191));
		points.push(new GLatLng(49.1930179,5.979528140000002));
		points.push(new GLatLng(49.19488486,5.97876816));
		points.push(new GLatLng(49.20146659,5.98623413));
		points.push(new GLatLng(49.20743156000001,5.98440576));
		points.push(new GLatLng(49.20964516,5.98762405));
		points.push(new GLatLng(49.20750716,5.99550311));
		points.push(new GLatLng(49.20899917,6.00351662));
		points.push(new GLatLng(49.21097877,5.99963515));
		points.push(new GLatLng(49.22181909,6.00956588));
		points.push(new GLatLng(49.22190126,6.01451517));
		points.push(new GLatLng(49.23311293,6.03075469));
		points.push(new GLatLng(49.23333657000001,6.027872680000001));
		points.push(new GLatLng(49.25007234,6.02912893));
		points.push(new GLatLng(49.2594562,6.007925890000002));
		points.push(new GLatLng(49.2661075,6.00983022));
		points.push(new GLatLng(49.27046857,6.007805260000001));
		points.push(new GLatLng(49.27249311,6.00983433));
		points.push(new GLatLng(49.27555918,6.00044361));
		points.push(new GLatLng(49.28577521,6.0016257));
		points.push(new GLatLng(49.28909939,6.002949020000001));
		points.push(new GLatLng(49.30974885,6.005014480000001));
		points.push(new GLatLng(49.31427084,5.99711119));
		points.push(new GLatLng(49.30752011,5.988102340000002));
		points.push(new GLatLng(49.30519849,5.98521405));
		points.push(new GLatLng(49.31856559000001,5.969985190000001));
		points.push(new GLatLng(49.32808703000001,5.949482800000001));
		points.push(new GLatLng(49.33697815000001,5.943296360000001));
		points.push(new GLatLng(49.34032106,5.94337985));
		points.push(new GLatLng(49.34488935,5.962819270000001));
		points.push(new GLatLng(49.34447660000001,5.973209570000001));
		points.push(new GLatLng(49.34488689,5.97837273));
		points.push(new GLatLng(49.34535231,5.973395500000001));
		points.push(new GLatLng(49.34665653,5.96356353));
		points.push(new GLatLng(49.36162056,5.95611227));
		points.push(new GLatLng(49.36206106,5.951033760000001));
		points.push(new GLatLng(49.36074426,5.94100301));
		points.push(new GLatLng(49.36946933,5.9333936));
		points.push(new GLatLng(49.3730813,5.92476423));
		points.push(new GLatLng(49.38097609,5.93502695));
		points.push(new GLatLng(49.40151352000001,5.92966015));
		points.push(new GLatLng(49.40461042,5.91988813));
		points.push(new GLatLng(49.40599192,5.915767930000001));
		points.push(new GLatLng(49.40756579000001,5.91182631));
		points.push(new GLatLng(49.4095394,5.91561598));
		points.push(new GLatLng(49.41816719,5.9197071));
		points.push(new GLatLng(49.42649069,5.928269730000001));
		points.push(new GLatLng(49.42876061,5.93777609));
		points.push(new GLatLng(49.43037953,5.94227414));
		points.push(new GLatLng(49.43383230000001,5.940779850000001));
		points.push(new GLatLng(49.44658590000001,5.930754550000001));
		points.push(new GLatLng(49.4524771,5.94184369));
		points.push(new GLatLng(49.4717335,5.93446558));
		points.push(new GLatLng(49.47741055,5.93977727));
		points.push(new GLatLng(49.47831911,5.93554946));
		points.push(new GLatLng(49.48537562,5.929586460000001));
		points.push(new GLatLng(49.48487343000001,5.92531413));
		points.push(new GLatLng(49.48265061,5.91751395));
		points.push(new GLatLng(49.48210237,5.912961380000001));
		points.push(new GLatLng(49.48455129,5.904658480000001));
		points.push(new GLatLng(49.48116273,5.897011480000002));
		points.push(new GLatLng(49.48435002,5.898418730000001));
		points.push(new GLatLng(49.49694177,5.89338826));
		points.push(new GLatLng(49.50165777000001,5.91178801));
		points.push(new GLatLng(49.49879923,5.931426440000001));
		points.push(new GLatLng(49.49997894,5.936189460000001));
		points.push(new GLatLng(49.49967531000001,5.94541789));
		points.push(new GLatLng(49.49492594000001,5.951212100000002));
		points.push(new GLatLng(49.49335497,5.95532379));
		points.push(new GLatLng(49.49021940000001,5.97019043));
		points.push(new GLatLng(49.46640347,5.97423972));
		points.push(new GLatLng(49.459557,5.985657190000001));
		points.push(new GLatLng(49.45408357,5.979322090000001));
		points.push(new GLatLng(49.45109703,5.982035140000001));
		points.push(new GLatLng(49.45561079000001,6.00102139));
		points.push(new GLatLng(49.45357263,6.025675470000001));
		points.push(new GLatLng(49.45037016,6.027210310000001));
		points.push(new GLatLng(49.44871521000001,6.0371597));
		points.push(new GLatLng(49.44783362,6.042144060000001));
		points.push(new GLatLng(49.46543602,6.05631855));
		points.push(new GLatLng(49.4636314,6.07656557));
		points.push(new GLatLng(49.45578539,6.086256));
		points.push(new GLatLng(49.45287683000001,6.09561627));
		points.push(new GLatLng(49.45291267,6.10080558));
		points.push(new GLatLng(49.46334569,6.09903532));
		points.push(new GLatLng(49.46976273,6.1029001));
		points.push(new GLatLng(49.47453759,6.122144040000001));
		points.push(new GLatLng(49.4911651,6.12958635));
		points.push(new GLatLng(49.48957892,6.13997404));
		points.push(new GLatLng(49.48776914,6.14460333));
		points.push(new GLatLng(49.49317870000001,6.15752627));
		points.push(new GLatLng(49.50287116000001,6.156758910000001));
		points.push(new GLatLng(49.50876069000002,6.175165560000001));
		points.push(new GLatLng(49.50708992,6.17962498));
		points.push(new GLatLng(49.50634227,6.21142752));
		points.push(new GLatLng(49.50684638,6.21672727));
		points.push(new GLatLng(49.51002218000001,6.216995810000002));
		points.push(new GLatLng(49.51003353000001,6.226388030000001));
		points.push(new GLatLng(49.50809745000001,6.23563184));
		points.push(new GLatLng(49.51220441000001,6.24269878));
		points.push(new GLatLng(49.50356221,6.276148040000001));
		points.push(new GLatLng(49.4975177,6.27947837));
		points.push(new GLatLng(49.49419062,6.28056263));
		points.push(new GLatLng(49.48705143000001,6.29450781));
		points.push(new GLatLng(49.48824554000001,6.299225050000002));
		points.push(new GLatLng(49.4817443,6.29562958));
		points.push(new GLatLng(49.47713285,6.31985545));
		points.push(new GLatLng(49.46999801000001,6.33134843));
		points.push(new GLatLng(49.46692354,6.33377194));
		points.push(new GLatLng(49.46840993,6.34342423));
		points.push(new GLatLng(49.46605698,6.34710407));
		points.push(new GLatLng(49.46707144000001,6.351239470000001));
		points.push(new GLatLng(49.46133176,6.360960510000001));
		points.push(new GLatLng(49.4595172,6.364391670000001));
		points.push(new GLatLng(49.45985386,6.3688475));
		points.push(new GLatLng(49.46771500000001,6.37233729));
		points.push(new GLatLng(49.46471780000002,6.392759620000001));
		points.push(new GLatLng(49.46598500000001,6.40319799));
		points.push(new GLatLng(49.47604768000001,6.42240984));
		points.push(new GLatLng(49.47449641,6.43183633));
		points.push(new GLatLng(49.46896342,6.43687427));
		points.push(new GLatLng(49.46670154,6.440433180000001));
		points.push(new GLatLng(49.46392009,6.45394158));
		points.push(new GLatLng(49.46476389,6.468182820000001));
		points.push(new GLatLng(49.45495055000001,6.481534090000001));
		points.push(new GLatLng(49.45250601,6.484895990000001));
		points.push(new GLatLng(49.44975212,6.50055322));
		points.push(new GLatLng(49.43532622,6.530291250000001));
		points.push(new GLatLng(49.43419424,6.53541239));
		points.push(new GLatLng(49.41908417000001,6.554637290000001));
		points.push(new GLatLng(49.41103614,6.53834027));
		points.push(new GLatLng(49.40118051,6.54052352));
		points.push(new GLatLng(49.39717651000002,6.55137342));
		points.push(new GLatLng(49.39412913,6.552335730000001));
		points.push(new GLatLng(49.38446586,6.584599730000001));
		points.push(new GLatLng(49.37092518,6.58593037));
		points.push(new GLatLng(49.36926618,6.59618022));
		points.push(new GLatLng(49.36308172,6.59857309));
		points.push(new GLatLng(49.35163131,6.587072850000001));
		points.push(new GLatLng(49.35808892000001,6.57489527));
		points.push(new GLatLng(49.35773455,6.569632240000001));
		points.push(new GLatLng(49.35614333000001,6.56499733));
		points.push(new GLatLng(49.34613923000001,6.56729866));
		points.push(new GLatLng(49.33845354000001,6.57758295));
		points.push(new GLatLng(49.33511194,6.578711050000002));
		points.push(new GLatLng(49.33562651,6.588335550000001));
		points.push(new GLatLng(49.32771167,6.593351170000001));
		points.push(new GLatLng(49.32212987,6.58888311));
		points.push(new GLatLng(49.30271381000001,6.6160019));
		points.push(new GLatLng(49.29866305,6.62863784));
		points.push(new GLatLng(49.29605992,6.63176327));
		points.push(new GLatLng(49.29371379000001,6.6404964));
		points.push(new GLatLng(49.28427527,6.65202929));
		points.push(new GLatLng(49.28114652,6.65323809));
		points.push(new GLatLng(49.28046612,6.667855530000001));
		points.push(new GLatLng(49.26075576,6.660762740000001));
		points.push(new GLatLng(49.25736259000001,6.66153855));
		points.push(new GLatLng(49.25475373,6.665016810000001));
		points.push(new GLatLng(49.2543206,6.68023733));
		points.push(new GLatLng(49.24625368,6.68880566));
		points.push(new GLatLng(49.24376945,6.6851045));
		points.push(new GLatLng(49.21757027,6.69293129));
		points.push(new GLatLng(49.21559296000001,6.69729678));
		points.push(new GLatLng(49.21945802,6.72213183));
		points.push(new GLatLng(49.20674554,6.730634690000001));
		points.push(new GLatLng(49.18958744,6.71285927));
		points.push(new GLatLng(49.17977847,6.717543610000002));
		points.push(new GLatLng(49.17661978,6.71975924));
		points.push(new GLatLng(49.17181331,6.726912420000001));
		points.push(new GLatLng(49.16919243000001,6.73016116));
		points.push(new GLatLng(49.16432054000001,6.74323374));
		points.push(new GLatLng(49.16593999000001,6.7478887));
		points.push(new GLatLng(49.16767308000001,6.7738109));
		points.push(new GLatLng(49.16818056000001,6.78414789));
		points.push(new GLatLng(49.15269471,6.82963876));
		points.push(new GLatLng(49.15140595,6.83447941));
		points.push(new GLatLng(49.15422377,6.84068049));
		points.push(new GLatLng(49.1555452,6.843854600000001));
		points.push(new GLatLng(49.15743298000001,6.847712450000001));
		points.push(new GLatLng(49.16016917,6.84531734));
		points.push(new GLatLng(49.1729354,6.844720900000001));
		points.push(new GLatLng(49.1757814,6.85875075));
		points.push(new GLatLng(49.17865022000002,6.860952130000001));
		points.push(new GLatLng(49.1820662,6.861294940000001));
		points.push(new GLatLng(49.19353831000001,6.8501495));
		map.addOverlay(new GPolyline(points));//, "#EF6329"
		//map.addOverlay(new GPolyline(points));
		return true;
	}
	function convCatTUrl(cat){
		var tmp='';
		tmp='type='+cat;
		if(!isNaN(cat)) tmp = "id="+cat;
		if(cat.indexOf("sessionalea")>=0)
		{
			tmp = cat;
		}else{
			if(cat.lastIndexOf(",")>1) tmp = "lstId="+cat;
		}		
		return tmp;
	}
	window.onload = function() {
		load();chargeID();
		GEvent.addListener(map, "moveend", function() {
		  /*var center = map.getCenter();
		  document.getElementById("message").innerHTML = center.toString();*/
		 if(clickMark != true)
		 {
		 	getLimits();
		 }
		});

	};