function testValue(_1,i){
content=cont[i];
if(_1.value==content){
resetValue(_1);
_1.select();
}
}
function resetValue(_3){
_3.value="";
}
function setValue(_4,i){
if(_4.value.length==0){
_4.value=cont[i];
}
}
function resetAll(){
var _6="";
nbChamps=document.forms[0].elements.length;
for(i=0;i<cont.length;i++){
_6=cont[i];
var j=0;
while(j<nbChamps){
if(document.forms[0].elements[j].value==_6){
champ=document.forms[0].elements[j].name;
resetValue2(champ);
}
j++;
}
}
}
function resetValue2(_8){
document.forms[0].elements[_8].value="";
}

