Salut,

J'ai un script js :
function segmentManagerSendForm(theForm, actionName, actionValue, url) {

alert(actionName + '--' + actionValue + '--' + url);
eval("theForm" + "." + actionName + ".value = actionValue");
theForm.action = url;
theForm.submit();
}

ça marche avec IE mais pas avec firefox. Le pb vient de la fct eval.
Qlq'un a une idée ?
Merci