function loadGoogleMap(mapLat,mapLng,mapDiv,mapZoom) {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById(mapDiv));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(new GLatLng(mapLat,mapLng), mapZoom);
		var marker = new GMarker(map.getCenter());
		map.addOverlay(marker);
		map.setCenter(marker.getLatLng());
	}
}
function sendFeedback(){
	theSubject = "Guest Feedback For: "+escape(document.getElementById('courseName').value);
	theFeedback = escape(document.getElementById('courseFeedback').value);
	name = 'carlos';
	AT = '@';
	domain = 'teetimes.pt';
	document.location.href = "mailto:"+name+AT+domain+"?subject="+theSubject+"&body="+theFeedback;
}
