function irA(valor){
	document.location.href='?option='+valor
}
function cambiaClase(elem,clase){
	document.getElementById(elem.id).className=clase;
}

function nuevoAjax(){ 
  var xmlhttp=false; 
  try { 
   // Creación del objeto ajax para navegadores diferentes a Explorer 
   xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
  } catch (e) { 
   // o bien 
   try { 
     // Creación del objet ajax para Explorer 
     xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { 
     xmlhttp = false; 
   } 
  } 

  if (!xmlhttp && typeof XMLHttpRequest!='undefined') { 
   xmlhttp = new XMLHttpRequest(); 
  } 
  return xmlhttp; 
} 

function dameEventos(fecha){
var aleatorio=Math.random();
document.getElementById('eventos').innerHTML="<div align='center'><img src='admin/images/carga.gif' alt='actualizando' /><br><span class='lblLogin'>Cargando informaci&oacute;n...</span></div>";
ajax=nuevoAjax(); 
ajax.open("GET", "lsteventos.php?fecha="+fecha+"&aleatorio="+aleatorio,true); 
ajax.onreadystatechange=function() { 
if (ajax.readyState==4) { 
    document.getElementById('eventos').innerHTML=ajax.responseText;
   } 
} 
ajax.send(null) 
} 
function email(mail){
document.location.href="mailto:"+mail+"@galapagos.es";
}
