function compare() { var nb_prod = 0; for (var i = 0; i < document.frmTheForm.prod_id.length; i++) { if (document.frmTheForm.prod_id[i].checked) { nb_prod++; } } if ((nb_prod < 2) || (nb_prod == 0)) { alert("Vous devez sélectionner au moins 2 annonces."); return; } if (nb_prod > 5) { alert("Vous devez sélectionner 5 annonces au maximum."); return; } document.frmTheForm.submit(); } function ajoutePanier(prod_id) { var action = "http://www.enuntio.com/panier/ajout/" + prod_id + "/"; if (document.frmTheForm.comp_op.value == "") { action += "comparateur"; } else { action += "comparateur_" + document.frmTheForm.comp_op.value; } document.frmTheForm.action = action; document.frmTheForm.submit(); }