/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jim Stiles | www.jdstiles.com */
function startCalcConjoint(){
  interval = setInterval("calcconjoint()",1);
}
function calcconjoint(){
  one = document.form1.conjoint_annees_maternelle.value;
  two = document.form1.conjoint_annees_secondaire.value; 
  three = document.form1.conjoint_annees_formation.value;
  four = document.form1.conjoint_annees_formation2.value;
  five = document.form1.conjoint_annees_etudes.value;
  six = document.form1.conjoint_annees_etudes2.value;
  seven = document.form1.conjoint_annees_etudes3.value;
  document.form1.conjoint_total_annees_etudes.value = (one * 1) + (two * 1) + (three * 1) + (four * 1) + (five * 1) + (six * 1) + (seven * 1);
}
function stopCalcConjoint(){
  clearInterval(interval);
}
