function ShowForm(){
  var Obj;
  //-- on affiche le fond
  Obj = document.getElementById('D_FOND');
  if( Obj){
    with( Obj.style){
      position="absolute";
      display="";
      left = "0px";
      top  = "0px";
      zIndex= 100;
    }
  }
  //-- on affiche le formulaire
  Obj = document.getElementById('div_gfi');
  if( Obj){
    with( Obj.style){
      position="absolute";
      display="";
      left = "200px";
      top  = "200px";
      zIndex= 110;
    }
    Obj.focus();
  }
}


//-----------------
function HideForm(){
  var Obj;
  Obj = document.getElementById('div_gfi');
  //-- on masque le formulaire
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
  //-- on masque le fond  
  Obj = document.getElementById('D_FOND');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
}
