function handleFormKeyPress(event){
  if (13 == event.keyCode){
     submitData();
  }
}

function backToRecherche(){
  var f = $('#keros');
  var a = $('#actionDefine');
  var p = $('#pageIdentity');
  if (f.length != 0 && a.length != 0 && p.length != 0){
    p.val('');
    a.val('');
    f.submit();
  }
}

function runRecherche(){
  var f = $('#keros');
  var a = $('#actionDefine');
  var p = $('#pageIdentity');
  if (f.length != 0 && a.length != 0 && p.length != 0){
    p.val('');
    f.submit();
  }
}

function moveIntoList (p_numPage) {
	  var f = $('#keros');
	  var p = $('#pageIdentity');
  if (f.length != 0 && p.length != 0){
    p.val(p_numPage);
    f.submit();
  }
}

function goToUrl(objecturl){
    if (objecturl){
      var f = $("#keros");
       var s = $("#sendtofiche");
       if(s.length != 0){
        s.val('1');
       }
       
      if (f.length != 0){
        f.action = objecturl.href;
        f.submit();
      }
    }
  }
