function confirmationQuestion() {var txt = '<table><tr><td>Vous avez ajout&eacute; un produit &agrave; votre panier</td></tr></table>';$.prompt(txt,{buttons:{"Voir mon panier":true, "Continuer mes achats":false},focus: 1,callback: function(v,m,f){ if(v==true) { $(location).attr('href',baseDir + "order.php"); } else { return v; } }});}
function askquote() { var txt = '<table><tr><td>Vous souhaitez créer un devis, <br/>pour cela veuillez vous identifier </td></tr></table>';$.prompt(txt,{buttons:{"Identifiez-vous":true, "annuler":false},focus: 1,callback: function(v,m,f){ if(v==true) { $(location).attr('href',linkQuote); } else { return v; } } }); }
function askcmd() { var txt = '<table><tr><td>Vous souhaitez effectuer une commande, <br/>pour cela veuillez vous identifier </td></tr></table>';$.prompt(txt,{buttons:{"Identifiez-vous":true, "annuler":false},focus: 1,callback: function(v,m,f){if(v==true){$(location).attr('href',linkQuote);}else{return v;}}});}

