// JavaScript Document
function change(Id, Etat)
{
	var txt
	txt = document.getElementById(Id);
	txt.disabled = Etat
}
