// JavaScript Document
function createMarker(point, direccion, icon) {
  var marker = new GMarker(point,icon);
  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml(direccion);
  });
  return marker;
}



    function load() {
      if (GBrowserIsCompatible()) {
        var mapagoogle = new GMap2(document.getElementById("mapa"));
		mapagoogle.addControl(new GLargeMapControl());
		mapagoogle.addControl(new GMapTypeControl());
        mapagoogle.setCenter(new GLatLng(41.60925, 2.14766), 15);
		
		var icon = new GIcon();
		icon.image = "http://www.t3quimica.com/images/icono-googl-maps.png";
		//icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(30, 30);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(6, 20);
		icon.infoWindowAnchor = new GPoint(5, 1);

		
		var point = new GLatLng(41.60925, 2.14766);
		var direccion ="<font  size='2' face='Trebuchet MS, Bitstream Vera Sans, Verdana, Microsoft Sans Serif, Arial'><b>GROUP T3</b><br/>T3 Quimica | T3 Process<br/>Torrent d'en Baiell 36 a<br/>08181 Sentmenat<br/>Barcelona</font>";
		mapagoogle.addOverlay(createMarker(point, direccion, icon));
		mapagoogle.addControl(new GOverviewMapControl());

		//map.addOverlay(new GMarker(point));

		
      }
    }

