function remplir(a,b){
	if (a.value==""){
		a.value=b;
	}
}
function effacer(a,b){
	if (a.value==b){
		a.value="";
	}
}