function ventana(url) {
   var win,w,h;
   w = window.screen.width;
   h = window.screen.height;
   win=window.open(url,"ALQUIMIA","width="+w+",height="+h+",fullscreen=yes");
}

function favoritos()  {
  var Netscape, MSIE, Opera;
  // detect browser
  Netscape = navigator.appName == "Netscape";
  MSIE = navigator.appName == "Microsoft Internet Explorer";
  Opera = navigator.userAgent.indexOf("Opera") > -1;
  //ejecución
  if (MSIE) {
     window.external.AddFavorite("http://recursos.pnte.cfnavarra.es/ciengehi", "CNICE-Proyecto Alquimia");
  }
  else if (Netscape) {
     window.alert("Para añadir ALQUIMIA a tus marcadores:\n\npincha en 'Aceptar' y luego pulsa 'Ctrl-D'");
  }
  else if (Opera) {
     window.alert("Para añadir ALQUIMIA a tus marcadores:\n\npincha en 'Aceptar' y luego pulsa 'Ctrl-T'");
  }
  else {
     window.alert("Este navegador no soporta esta función.");
  }
}
