// changement de couleur du TR

var docObj = (document.all) ? "document.all." : "document."; 
var OldColor; 
var OldBorderColor; 

function overCouleurTR(rowNum){
	thisRow = document.getElementById(rowNum);
	OldColor = thisRow.className;
	thisRow.className = "listeResultat_over";
}

function outCouleurTR(rowNum){
	thisRow = document.getElementById(rowNum);
	thisRow.className = OldColor;
}


// ------------------------------------------------------
// Ouverture de la fenetre pour le mot de passe de perdu
// ------------------------------------------------------

function new_window(){
	myWindow = window.open("pass_perdu.htm", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=340,height=170,left=100,top=100");
}



function activ_champ(rowNum){
	thisRow = document.getElementById(rowNum);
	OldColor = thisRow.className;
	thisRow.className = "textfield_over";
}

function changement(rowNum){
	thisRow = document.getElementById(rowNum);
	thisRow.className = OldColor;
}

function activ_champ_txt(rowNum){
	thisRow = document.getElementById(rowNum);
	OldColor = thisRow.className;
	thisRow.className = "areatextfield_over";
}

function changement_txt(rowNum){
	thisRow = document.getElementById(rowNum);
	thisRow.className = OldColor;
}
