<!--
// appel de la fonction :
// mel("toto","titi.com")
// affiche : "toto@titi.com"
function mel(prefixe,domaine) {
	var adresse;
	adresse = prefixe + "@" + domaine;
  	document.write(adresse);
}

function mail(prefixe,domaine) {
	adresse = prefixe+"@"+domaine;
  	document.write('<a href="mailto:'+adresse+'">'+adresse+'</a>')
}
function mail2(prefixe,domaine,texte) {
	adresse = prefixe+"@"+domaine;
  	document.write('<a href="mailto:'+adresse+'">'+texte+'</a>')
}
function mailnoprint(prefixe,domaine){
	adresse = prefixe+"@"+domaine;
  	document.write('<a href="mailto:'+adresse+'"></a>')
}
function goto(lien){
	window.location.href=lien;
}
var oldcolor;
var oldligne=0;
var detailsopen=0;
function changecolor(col){
	/*colb=(col.id);
	if (document.all){
		obj=eval("document.all."+colb+".style");
		oldcolor=obj.backgroundColor;
		obj.backgroundColor="#ff7700";

	}else{
		oldcolor=document.getElementById(colb).style.backgroundColor;
		document.getElementById(colb).style.background='#ff7700';
	}*/
	/*$(col).morph ('.header_cadre_centre  tr.liste_tab_v');*/
	$(col).className = 'liste_tab_v';
}
function reinitcolor(col){
	/*colb=(col.id);
	if (document.all){
		obj=eval("document.all."+colb+".style");
		obj.backgroundColor=oldcolor;
	}else{
		document.getElementById(colb).style.backgroundColor=oldcolor;
	}*/
	/*$(col).morph ('.header_cadre_centre  tr.liste_tab');*/
	$(col).className = 'liste_tab';
}
-->
