function load() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("route-map"));
		var point = new GLatLng(51.069307,3.776819);
		var text = '<table border="0"><tr valign=\"top\"><td width=\"150\"><img class="no-border" src="http://altvertaalbureau.weblodge.be/assets/images/altvertaalbureau_logo.jpg" alt="A.L.T. Vertaalbureau BVBA" /></td><td width="130"><p>Schuurgoedstraat 6<br />9040 Sint-Amandsberg<br />T +32(0)9 356 75 55<br />F +32(0)9 356 76 66<br /><br /><a href="mailto:info@altvertaalbureau.be" title="info@altvertaalbureau.be">info@altvertaalbureau.be<br /><a href="http://www.altvertaalbureau.be/" title="A.L.T. Vertaalbureau" target="_blank">www.altvertaalbureau.be</a></p></td></tr></table>';
		var icon = new GIcon();
		//icon.image = "http://dutoict.webhome.be/assets/images/logo-small-webhome.gif";
		//icon.iconSize = new GSize(50, 29);
		icon.iconAnchor = new GPoint(25, 29);
		icon.infoWindowAnchor = new GPoint(15, 0);

		map.setCenter(point, 15);
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());

		var marker = new GMarker(point);
		
		map.addOverlay(marker);
		
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(text);
		});
	}
}
