// Searchform pour la version française
// this function prevents this page from being loaded outside
// the frameset. Change index.htm to the name of your frameset
// document.

//if (parent.location.href.indexOf("fr/index.html") == -1)
// top.location.href = "fr/index.html";


// enter full or relative URL to your search page
//var search_htm_url = "catalogue/fr/search.html";
var search_htm_url = "http://www.elda.org/catalogue_fr.php";

// change frame2 in the function below to the name of your
// main frame per your frameset document.

function searchPage() {
 if ((document.searchpage.keyword.value.length == 0)
 || (document.searchpage.keyword.value == " ")) {
  alert("Vous devez d'abord entrer un mot-clé à chercher.");
 } else {
  sel = document.searchpage.and_or.selectedIndex;
  this.location.href = search_htm_url + "?" 
   + escape(document.searchpage.keyword.value)
   + (sel==0?"&and":(sel==2?"&exact":"&or"));
 }
 return false;
}


