document.write('<script src="http://maps.google.com/maps?hl=en&file=api&v=2&key=ABQIAAAAHdvjUTvY-Y00f4pQpn-ZfBR9620-Vq6O9en2vamEmLrzm8kZRRRPnbzE8c-MAXeemZ9NBA-a8jVR4A" type="text/javascript"></script>');
		
		function mapload() {
		if (GBrowserIsCompatible()) {
		

		
		var gmap = new GMap2(document.getElementById("map"));
		gmap.addControl(new GOverviewMapControl());
		gmap.setMapType(G_HYBRID_MAP);
		gmap.setCenter(new GLatLng(28.05043,-16.6515),8);
		gmap.addOverlay(createMarker( new GLatLng(28.05043,-16.6515), "Blackstone Pictures  <br> 24-6 Studio Tenerife <br> Carretera Cho II, N&deg; 16"));
		var customUI = gmap.getDefaultUI();
			customUI.controls.overviewmapcontrol = true; 
		gmap.setUI(customUI);

		}
		 else {
      alert("Sorry, Google Maps API is not compatible with your Browser<br>Please activate JavaScript and use the newest version of browsers");
    }
}

function createMarker(point, mtext) {
	var marker = new GMarker(point);
	GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml( mtext );
	});
	return marker;
}

