function load() 
{
	var eMapNode = document.getElementById("map");
	if ( !eMapNode ) { return; }
	var sCoords = eMapNode.className;
	sCoords = sCoords.replace( /Lat|Lng|\s/g, '' );
	sCoords = sCoords.replace( /-/g, '.' );
	var Reseller = sCoords.split( ',' );
	
	if (GBrowserIsCompatible()) {
		var map = new GMap2( eMapNode );

		map.setCenter(new GLatLng(Reseller[0], Reseller[1]), 13);
		
		var redIcon  = new GIcon();
		redIcon.image = "http://www.autohausen.de/img/flag-red.gif";
		redIcon.iconSize = new GSize(16, 16);
		redIcon.iconAnchor = new GPoint(10, 15);
		//redIcon.infoWindowAnchor = new GPoint(14, 1);
		
		var point = new GLatLng(Reseller[0], Reseller[1]);
		map.addOverlay(new GMarker(point, redIcon));
		
	}
}

origload = window.onload;
window.onload = function () { origload(); load(); }
window.onunload = GUnload;