var tab_choix= new Array;
tab_choix[1]=0;
tab_choix[2]=0;
tab_choix[3]=0;
tab_choix[4]=0;
tab_choix[5]=0;

function ouvrir_choix (m) {
  $('p_form' + m).setStyle('color','#ffffff');
  $('p_form' + m).setStyle('font-weight','bold');
  $('p_form' + m).setStyle('background-color','#B3CF15');
}

function fermer_choix (m) {
  $('p_form' + m).setStyle('color','#658FA4');
  $('p_form' + m).setStyle('font-weight','normal');
  $('p_form' + m).setStyle('background-color','#ffffff');
}

function form_doc(n) {
  if (tab_choix[n]==0) {
  ouvrir_choix(n);
  document.getElementById('p_choix' + n).value="oui";
  tab_choix[n]=1;
  }
  else {
  fermer_choix(n);
  document.getElementById('p_choix' + n).value="non";
  tab_choix[n]=0;
  }
}

function valider_form3() {
var test=true;

  if(document.formulaire_doc.email.value == "") {
  test=false;
  $('email').setStyle('background-color','#ff0000');
  }
  else {
  $('email').setStyle('background-color','#B3CF15');
  }
  if(document.formulaire_doc.nom.value == "") {
  test=false;
  $('nom').setStyle('background-color','#ff0000');
  }
  else {
  $('nom').setStyle('background-color','#B3CF15');
  }
  if(document.formulaire_doc.prenom.value == "") {
  test=false;
  $('prenom').setStyle('background-color','#ff0000');
  }
  else {
  $('prenom').setStyle('background-color','#B3CF15');
  }
  if(document.formulaire_doc.tel.value == "") {
  test=false;
  $('tel').setStyle('background-color','#ff0000');
  }
  else {
  $('tel').setStyle('background-color','#B3CF15');
  }
  if(document.formulaire_doc.adr1.value == "") {
  test=false;
  $('adr1').setStyle('background-color','#ff0000');
  }
  else {
  $('adr1').setStyle('background-color','#B3CF15');
  }
  if(document.formulaire_doc.cp.value == "") {
  test=false;
  $('cp').setStyle('background-color','#ff0000');
  }
  else {
  $('cp').setStyle('background-color','#B3CF15');
  }
  if(document.formulaire_doc.ville.value == "") {
  test=false;
  $('ville').setStyle('background-color','#ff0000');
  }
  else {
  $('ville').setStyle('background-color','#B3CF15');
  }
  if(document.formulaire_doc.pays.value == "") {
  test=false;
  $('pays').setStyle('background-color','#ff0000');
  }
  else {
  $('pays').setStyle('background-color','#B3CF15');
  }
  if(document.formulaire_doc.informatif.checked == false) {
  test=false;
  $('info_alert').setStyle('background-color','#ff0000');
  }
  else {
  $('info_alert').setStyle('background-color','#ffffff');
  }
  
  if(test==false) {
  alert ('champs obligatoires non remplis !');
  return false;
  }
  else {
  return true;
  }
}
