function MM_jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function cargarHoroscopo2(url) 
{
  if(url=='')
  {
    return;
  }
  conexion1=crearXMLHttpRequest();
  conexion1.onreadystatechange = procesarEventos2;
  conexion1.open("GET", url, true);
  conexion1.send(null);
}

function procesarEventos2()
{
  var detalles = document.getElementById("calendario");
  if(conexion1.readyState == 4)
  {
    detalles.innerHTML = conexion1.responseText;
  } 
  else 
  {
    detalles.innerHTML = '<div align="center" style=" font-size:11px; font-family:arial"><img src="imagenes/loading_ani.gif" border="0"><br><br>Cargando...<br><br>Espere un momento por favor</div>';
  }
}

function cargarHoroscopo(url)
{
  if(url=='')
  {
    return;
  }
  conexion1=crearXMLHttpRequest();
  conexion1.onreadystatechange = procesarEventos;
  conexion1.open("GET", url, true);
  conexion1.send(null);
}

function procesarEventos()
{
  var detalles = document.getElementById("detalles");
  if(conexion1.readyState == 4)
  {
    detalles.innerHTML = conexion1.responseText;
  } 
  else 
  {
    detalles.innerHTML = '<div align="center" style=" font-size:11px; font-family:arial"><img src="imagenes/loading_ani.gif" border="0"><br><br>Cargando...<br><br>Espere un momento por favor</div>';
  }
}

function crearXMLHttpRequest() 
{
  var xmlHttp=null;
  if (window.ActiveXObject) 
    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  else 
    if (window.XMLHttpRequest) 
      xmlHttp = new XMLHttpRequest();
  return xmlHttp;
}
