document.write('<sc'+'ript src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAUK16e3J5AVG_JutTJuejRBSU5uft7TQZx_VBAVJIQ4R3iCLTCxRTwFS5zM0RYPN42lWwbi8XqYh7Nw" type="text/javascript"></scr'+'ipt>');
function mapload() {
	 if (GBrowserIsCompatible()) {
		var gmap = new GMap2(document.getElementById("map"), {mapTypes:[G_NORMAL_MAP, G_SATELLITE_MAP, G_HYBRID_MAP]});
		gmap.addControl(new GSmallMapControl());
		gmap.setCenter(new GLatLng(47.5605745,7.5723018),16);
		gmap.addOverlay(createMarker( new GLatLng(47.5605745,7.5723018), "BSystems Basel <br> Hegenheimerstrasse 36 <br> 4055 Basel"));
	 }
}

function createMarker(point, mtext) {
	var marker = new GMarker(point);
	GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml( mtext );
	});
	return marker;
}
window.setTimeout(mapload,1000);

