//Recherche
function urlencode(txt) {
   txt = txt.replace(/[ ]/g,"+") 
   return escape(txt) 
}

function majliste(obj,cible) {
var k='';
var val='';
var query='';

val = obj.value;

query='/.framework/majlistes.php?v=' + urlencode(val)+'&cible='+cible
pipe.location=query

}
