	/*A continuación se muestran las funciones Javascript para trabajar con la API  de Google Maps y mostrar el mapa con la ubicación de las sedes de Deimos Imaging
	*/
 
		function drawPoint(place,LANGUAGE){
		
			if(place=="Boecillo"){
				if(LANGUAGE=="Spanish"){
					htmlText='<html><body><h2 style="margin-top:1px;margin-bottom=0px;">Parque Tecnológico Boecillo</h2><h3 style="margin-top:1px;margin-bottom=0px;">Las instalaciones principales de la compañía están en:</h3><p style="margin-top:1px;margin-bottom=0px;">Parque Tecnológico Boecillo <br/>Edif. Galileo, Módulo Gris, Oficina 103 <br/>47151 Boecillo (Valladolid) España<br>Tel.: +34 983 54 89 23 <br>Fax: +34 983 54 81 23</p><h3 style="margin-top:1px;margin-bottom=0px;">Si quiere solicitar información adicional, puede contactar con nuestro departamento comercial.</h3></body></html>';			
				} else {
					htmlText='<html><body><h2 style="margin-top:1px;margin-bottom=0px;">Boecillo\'s Research Park</h2><h3 style="margin-top:1px;margin-bottom=0px;">Main company headquarters are located at:</h3><p style="margin-top:1px;margin-bottom=0px;">Parque Tecnológico Boecillo <br/>Edif. Galileo, Módulo Gris, Oficina 103 <br/>47151 Boecillo (Valladolid) España<br>Tel.: +34 983 54 89 23 <br>Fax: +34 983 54 81 23</p><h3 style="margin-top:1px;margin-bottom=0px;">Further information is available on request from our sales department.</h3></body></html>';		
				}

				var element='moreInfoOnBoecillo';
				var latLong= new GLatLng(41.515892,-4.721434);

			} else if(place=="Delibes") {
				if(LANGUAGE=="Spanish") {
					htmlText='<html><body><h2 style="margin-top:1px; margin-bottom=0px;">Edificio I+D Valladolid</h2><h3 style="margin-top:0px;margin-bottom=0px;">El centro de producción de imágenes y desarrollo de aplicaciones está situado en el Centro de Investigación y Desarrollo de la Universidad de Valladolid.</h3><p style="margin-top:10px;margin-bottom=0px;">R&D Building<br/>Campus Miguel Delibes<br/>Paseo de Belén s/n<br/>47011 Valladolid (Valladolid)<br/>Phone: +34 983 266510</p><h3 style="margin-top:0px;margin-bottom=0px;">Si quiere solicitar información adicional, puede contactar con nuestro departamento comercial.</h3></body></html>';
				} else {
					htmlText='<html><body><h2 style="margin-top:1px;margin-bottom=0px;">R&D Building Valladolid</h2><h3 style="margin-top:0px;margin-bottom=0px;">The processing, archiving and distribution centre are located at the R&D Building of the University of Valladolid. In this University, LATUV has been developing its Remote Sensing activities during the last 18 years</h3><p style="margin-top:10px;margin-bottom=0px;">R&D Building<br/>Campus Miguel Delibes<br/>Paseo de Belén s/n<br/>47011 Valladolid (Valladolid)<br/>Phone: +34 983 266510</p><h3 style="margin-top:0px;margin-bottom=0px;">Further information is available on request from our sales department.</h3></body></html>';
				}

				 var element='moreInfoOnMiguelDelibes';
				 var latLong= new GLatLng(41.66214,-4.707556);
			}
			
				if(document.getElementById(element).innerHTML=="") {

					document.getElementById(element).style.background='#FFFFD9';
					document.getElementById(element).innerHTML=htmlText;

					if(element=='moreInfoOnBoecillo'){
							document.getElementById('listaBoecillo').style.backgroundImage= 'url(../images/arrow2.gif)';
					} else if (element=='moreInfoOnMiguelDelibes'){
						document.getElementById('listaMiguelDelibes').style.backgroundImage= 'url(../images/arrow2.gif)';
					}

					//Se carga el mapa
					document.getElementById("map_canvas").innerHTML="";
					var map = new GMap2(document.getElementById("map_canvas"));
	  				map.setCenter(latLong, 15);
					map.addControl(new GMapTypeControl());
        	   	     		map.addControl(new GLargeMapControl());
                    	        	map.addControl(new GScaleControl());
					map.addControl(new GOverviewMapControl());

					//Se pone un pin para indicarlo
					var marker=new GMarker(latLong);			
				
					GEvent.addListener(marker,"click",function() {
						marker.openInfoWindowHtml( htmlText,{maxWidth:'490'});
					});

					//marker.openInfoWindowHtml( htmlInfo,{maxWidth:'490'});

				        map.addOverlay(marker);
				} else {
					document.getElementById(element).innerHTML='';
		
					if(element=='moreInfoOnBoecillo'){
							document.getElementById('listaBoecillo').style.backgroundImage= 'url(../images/arrow.gif)';
					} else if (element=='moreInfoOnMiguelDelibes'){
						document.getElementById('listaMiguelDelibes').style.backgroundImage= 'url(../images/arrow.gif)';
					}

					loadMap();	
				}
		}

		 function loadMap() {
      			if (GBrowserIsCompatible()) 
			{
			     var latitudMiguelDelibes=41.660281;
			     var latitudBoecillo=41.515892;
			     var longitudMiguelDelibes=-4.705646;
			     var longitudBoecillo=-4.721434;
			     var latitudMedia=(latitudBoecillo+latitudMiguelDelibes)/2;
			     var longitudMedia=(longitudMiguelDelibes+longitudBoecillo)/2;

	   	 	      var map = new GMap2(document.getElementById("map_canvas"));
			      var latLong= new GLatLng(latitudMedia,longitudMedia);
	  		      map.setCenter(latLong, 11);
		              map.addControl(new GMapTypeControl());
        	   	      map.addControl(new GLargeMapControl());
                    	      map.addControl(new GScaleControl());
			      map.addControl(new GOverviewMapControl());
			      var markerMiguelDelibes=new GMarker(new GLatLng(latitudMiguelDelibes,longitudMiguelDelibes));

			      GEvent.addListener(markerMiguelDelibes,"click",function()
				{
					var htmlInfoDelibes='<html><body><h2>Edificio I+D Valladolid</h2><h3>El centro de producción de imágenes y desarrollo de aplicaciones está situado en el Centro de Investigación y Desarrollo de la Universidad de Valladolid.</h3>Centro de Investigación Científica y Desarrollo Tecnológico<br/>Campus Miguel Delibes<br/>Paseo de Belén s/n<br/>47011 Valladolid (Valladolid)<br/>Tel: +34 983 266510<h3>Si quiere solicitar información adicional, puede contactar con nuestro departamento comercial.</h3></body></html>';

					markerMiguelDelibes.openInfoWindowHtml(htmlInfoDelibes,{maxWidth:'490'});
				});


			      var markerBoecillo=new GMarker(new GLatLng(latitudBoecillo,longitudBoecillo));

 				GEvent.addListener(markerBoecillo,"click",function()
				{
					var htmlInfoBoecillo='<html><body><h2>Parque Tecnológico Boecillo</h2><h3>Las instalaciones principales de la compañía están situadas en:</h3><p>Parque Tecnológico Boecillo <br/>Edif. Galileo, Módulo Gris, Oficina 103 <br/>47151 Boecillo (Valladolid) España<br>Tel.: +34 983 54 89 23 <br>Fax: +34 983 54 81 23</p><h3>Si quiere solicitar información adicional, puede contactar con nuestro departamento comercial.</h3></body></html>';
					markerBoecillo.openInfoWindowHtml( htmlInfoBoecillo,{maxWidth:'490'});
				});

		              map.addOverlay(markerMiguelDelibes);
			      map.addOverlay(markerBoecillo);
			}
		}

