// scripts Brigitte Pazot


var type_instruction = Number(0);
if (document.getElementById && !document.all)    // vaut 1
  { type_instruction = 1; }
else if (document.all)    // vaut 2
  { type_instruction = 2; }
else if (document.layers)    // vaut 3
  { type_instruction = 3; }
else
  { type_instruction = 0; };    // cas d'anomalie

