//<script>
//© http://www.Parieurs-Sportifs.com 
//http://www.parieurs-sportifs.com/include/calculCapital.js
//
document.write("<form name=calculcote>Capital <input type =text name=capital value=''> euros<br>Mise&nbsp;&nbsp;&nbsp;&nbsp; <input type =text name=mise  value=''> euros<br>");
document.write("Cote Pari 1 <input type =text name=cote1  value=1> (exemple 1.95)<br>");
document.write("Cote Pari 2 <input type =text name=cote2  value=1> (si pari combin&eacute;)<br>");
document.write("Cote Pari 3 <input type =text name=cote3  value=1> <br>");
document.write("Cote Pari 4 <input type =text name=cote4  value=1> <br>");
document.write("Cote Pari 5 <input type =text name=cote5  value=1> <br>");
document.write("Cote Pari 6 <input type =text name=cote6  value=1> <br>");
document.write("Cote Pari 7 <input type =text name=cote7  value=1> <br>");
document.write("<input type=button value='Calculer !' name=Calculer onclick='calculCote()'></form>");

function calculCote(){
if (document.calculcote.cote1.value<1){document.calculcote.cote1.value=1;}
if (document.calculcote.cote2.value<1){document.calculcote.cote2.value=1;}
if (document.calculcote.cote3.value<1){document.calculcote.cote3.value=1;}
if (document.calculcote.cote4.value<1){document.calculcote.cote4.value=1;}
if (document.calculcote.cote5.value<1){document.calculcote.cote5.value=1;}
if (document.calculcote.cote6.value<1){document.calculcote.cote6.value=1;}
if (document.calculcote.cote7.value<1){document.calculcote.cote7.value=1;}
coteTotale=document.calculcote.cote1.value*1*document.calculcote.cote2.value*1*document.calculcote.cote3.value*1*document.calculcote.cote4.value*1*document.calculcote.cote5.value*1*document.calculcote.cote6.value*1*document.calculcote.cote7.value*1;
siPerdu=Math.round((document.calculcote.capital.value - document.calculcote.mise.value) *100)/100;
siGagne=Math.round((document.calculcote.capital.value*1 + ((coteTotale-1)*document.calculcote.mise.value))*100)/100;
alert('Nouveau capital \n\nen cas de Gain : '+siGagne+'euros \nen cas de Perte : '+siPerdu+'euros '+'\n\nCote totale : '+coteTotale+'\n\nwww.Parieurs-Sportifs.com');
}
//</script>
//<!//-- © http://www.Parieurs-Sportifs.com -->

