function choose(choix,radio) {
  if (!(eval("document.predictions.choix_"+choix))) {return;}
  eval("document.predictions.choix_"+choix+"[radio].checked = 1");
  for (var i = 0; i <= 2; i++) {
    if (radio == i) {
      eval("document.getElementById('choix_"+choix+"_"+i+"').className='ballchosen'");
    } else {
      eval("document.getElementById('choix_"+choix+"_"+i+"').className='notchosen'");
    }
  }
	global_change = 1;
}

function movf(choix,radio) {
  if (!(eval("document.predictions.choix_"+choix))) {return;}
  if (eval("document.predictions.choix_"+choix+"[radio].checked")) {return;}
  eval("document.getElementById('choix_"+choix+"_"+radio+"').className='ballmouse'");
}

function mouf(choix,radio) {
  if (!(eval("document.predictions.choix_"+choix))) {return;}
  if (eval("document.predictions.choix_"+choix+"[radio].checked") == true) {return;}
  eval("document.getElementById('choix_"+choix+"_"+radio+"').className='notchosen'");
}

