// Procédures globales du projet
function BordureInvisibleIndex(sNomChamp){

	// Rend la bordure du champ invisible (couleur cadre = couleur fond du champ)
//	document.getElementById(sNomChamp).style.border = "1px solid "+document.getElementById(sNomChamp).style.backgroundColor;
//	document.getElementById(sNomChamp).style.backgroundColor = "#000000";
	document.getElementById(sNomChamp).style.border = "1px solid "+"#FFFFFF";
//	document.getElementById(sNomChamp).style.backgroundColor = document.getElementById(sNomChamp).bgColor;
	return 1;                                          

}

