///* Effacement automatique des champs de saisie */
//function auto_fill(o, i){
// if(i){
//  if(o.refv==null)
//   o.refv = o.value;
//  if(o.value==o.refv)
//   o.value='';
//   o.select();
// }
// else{
//  if(o.value=='')
//   o.value=o.refv;
// }
//}

///* Ajustement hauteur blocs accueil */
//function init_espaces(v){
// if(v==0){
//  window.setTimeout("init_espaces(1)", 50);
//  return;
// }
// maxh = 0;
// objcol = document.getElementById("e_marches").getElementsByTagName("DIV");
// for(i=0;i<objcol.length;i++)
//  objcol[i].style.height = 'auto';
// for(i=0;i<objcol.length;i++)
//  maxh = Math.max(maxh, parseInt(objcol[i].offsetHeight));
// for(i=0;i<objcol.length;i++)
//  objcol[i].style.height = maxh + 'px';
// window.onresize = function(){
//  init_espaces(0);
// }
//}

