<!--

function ouvre_div(MaDiv){
  document.getElementById(MaDiv).style.display="block";
  document.getElementById(MaDiv).style.visibility="visible"; 
}

function ferme_div(MaDiv){
  document.getElementById(MaDiv).style.display="none";
  document.getElementById(MaDiv).style.visibility="hidden"; 
}

function valide(rechercher)
{
	if (rechercher.r.value.length < 3)
	{
		alert("Veuillez entrer au moins 3 caractères, merci.");
		rechercher.r.focus();
		return false;
	}

else

	if (rechercher.r.value == "Mot(s) clé(s)...")
	{
		alert("Veuillez entrer vos mots clés, merci.");
		rechercher.r.focus();
		return false;
	}

	return true;
}

function focus_champs(champ){
		
		if (champ=='r'){
			if (document.rechercher.r.value=='Mot(s) clé(s)...'){
				document.rechercher.r.value = '';
			}
		}
		
}

function fenetreCent(url,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}

function select_url(){
idoption = document.choix.table.value;
this.location.href = idoption;
}

-->