 // oxywork : remplacez ces fonctions si nécessaire pour modifier la présentation

function productchoice(selectcontent) {
document.write(selectcontent+"<br><input type=text name=q value=1 size=3>");
document.write("<input type=button style=width:16px;height:16px;font-size:8px; value=+ onclick=q.value++;>");
document.write("<input type=button style=width:16px;height:16px;font-size:8px; value=- onclick=\"if (q.value>=1) q.value--;\">");
document.write("<input type=submit name=ok value=\"Commander\">");
};

function placeorder(form,isselect,documentobj) {
if (isselect) document.cookie='comm['+form.idproduit.options[form.idproduit.selectedIndex].value+']='+form.q.value;
else document.cookie='comm['+form.idproduit.value+']='+form.q.value;
if (confirm('Commande de '+form.q.value+' exemplaire(s) ajoutée. Voulez-vous accéder au bon de commande ?')) {documentobj.location='./?s=1&ss=articles&depeche_type=16'; return true;} else {return false;};
};

function orderrec(form,noconfirm) {
var c='',n=0;
for (i=0;i<form.length;i++) if (form[i].value!='' && form[i].name.substring(0,4)=="comm") {n++;c=form[i].name+"="+form[i].value;document.cookie=c;}
//alert(form.length+ " c="+c);
if (!noconfirm) {if (!n) alert("aucune sélection!"); else alert(n+' produits ajoutés au panier.');}
//document.cookie=c;
};
