// la fonction pour rafraichir le captcha
var refreshCaptcha = function( ){
  $.ajax( {
    type: 'POST',
    url: './ajax.php',
    dataType: 'html',
    data: 'param0=captcha&param1=refresh_image',
    success: function( data ){ $( '#captcha_image' ).html( data ) ; }
  } ) ;
}

