//
// Tester et envoyer le formulaire de recherche...
//
function envoi_form_rech() {
	if (document.form_rech.rech_texte.value!="") document.form_rech.submit();
}
//////////////////////////////////////////////////


//
// Tester et envoyer le formulaire de connexion à l'espace perso...
//
function connect() {
	if ( document.form_connect.eap_login.value!="" && document.form_connect.eap_passwd.value!="" && document.form_connect.eap_dept.selectedIndex) document.form_connect.submit();
}
//////////////////////////////////////////////////


//
// Popup...
//
function popup (the_URL, nom, X, Y, Left, Top) {
	if (!Y)		var Y	 = screen.height - 200;
	if (!Left)	var Left = (screen.width  - X) / 2;
	if (!Top)	var Top  = (screen.height - Y) / 2;
	var fen = window.open(the_URL,nom,"toolbar=no,status=no,location=no,resizable=yes,scrollbars=yes,copyhistory=0,menubar=no,width=" + X + ",height=" + Y + ",left=" + Left + ",top=" + Top);
	fen.focus();
}
//////////////////////////////////////////////////


//
// Affiche ou masque un id...
//
/*
var id_on_encours = '';
function id_on(id) {
	if (o = document.getElementById(id_on_encours)) o.style.display = 'none';
	
	document.getElementById(id).style.display = 'block';

	id_on_encours = id;
}
*/
//////////////////////////////////////////////////




//
// Affiche ou masque un id...
//
var id_on_encours = '---';
var timeout = 0;
function id_onoff(id, on_off) {
	if (o_encours = document.getElementById(id_on_encours)) o_encours.style.display = 'none';

	clearTimeout(timeout);

	if (o = document.getElementById(id)) {
		if (on_off)	o.style.display = 'block';
		else		o.style.display = 'none';
	}

	id_on_encours = id;
}
function id_on(id) {
	id_onoff(id, true);
}
function id_off_delay(id) {
	timeout = setTimeout("id_onoff('" + id + "', false)",500);
}
function id_off_delay2(id) {
	timeout = setTimeout("id_onoff('" + id + "', false)",50);
}
//////////////////////////////////////////////////




//
// Intervertir une image...
//
function changer_image (obj, img) {
	obj.src = img.src;
}
//////////////////////////////////////////////////




function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}