var est01;
var resp01;

function evaluar()
{
est01=prompt("Introduce la Clave correspondiente:" ,"Respuesta");

   if (est01 != null)
   {
   est01=est01.toLowerCase();
   }
   
   if (est01 == "espacial")
   {
   alert("ESTUPENDOOO!!! \n Has llegado a la nebulosa ANKTERES.")
   }
   else
   {
   alert("ˇCLAVE INCORRECTA! \n Acceso Denegado");
   document.location.href="entrada.htm";
   }
   
}


function respuesta()
{
resp01=prompt("Introduce la respuesta correcta:" ,"Respuesta");

 if (resp01 != null)
 {
 resp01=resp01.toLowerCase();
 }

 if (resp01 == "vasto")
 {
 alert("BIEEEN, ESA ERA LA PALABRA!!! \n La clave para el siguiente destino es: cosmos")
 }
 else
 {
 alert("ˇINCORRECTO! \n Prueba otra vez, por favor...");
 } 
}