  switch(index) {
  case 1: /* Francais */
document.writeln("<form method=POST name=\"form_reviseur\"> ") ;
document.writeln("<div id=reviseur> ") ;
document.writeln("R&eacute;viseurs:  ") ;
document.writeln("<select name=\"select_reviseur\" onChange=\"CSURLPopupShow(\'form_reviseur\', \'select_reviseur\', \'_top\')\"> ") ;
document.writeln("<option selected>Langues ") ;
document.writeln("<option value=\"uk\">Anglais ") ;
document.writeln("<option value=\"sp\">Espagnol ") ;
document.writeln("<option value=\"fr\">Fran&ccedil;ais ") ;
document.writeln("</select> ") ;
document.writeln("</div> ") ;
document.writeln("</form> ") ;
  break ;


  case 2: /* Anglais */

document.writeln(" <form method=POST name=\"form_reviseur\"> ") ;
document.writeln(" <div id=reviseur> ") ;
document.writeln(" Revisers:  ") ;
document.writeln(" <select name=\"select_reviseur\" onChange=\"CSURLPopupShow(\'form_reviseur\', \'select_reviseur\', \'_top\')\"> ") ;
document.writeln(" <option selected>Languages ") ;
document.writeln(" <option value=\"uk\">English ") ;
document.writeln(" <option value=\"fr\">French ") ;
document.writeln(" </select> ") ;
document.writeln(" </div> ") ;
document.writeln(" </form> ") ;
  break ;

  case 3: /* Espagnol */

document.writeln(" <form method=POST name=\"form_reviseur\"> ") ;
document.writeln(" <div id=reviseur> ") ;
document.writeln(" Revisores:  ") ;
document.writeln(" <select name=\"select_reviseur\" onChange=\"CSURLPopupShow(\'form_reviseur\', \'select_reviseur\', \'_top\')\"> ") ;
document.writeln(" <option selected>Idiomas ") ;
document.writeln(" <option value=\"fr\">Francés ") ;
document.writeln(" <option value=\"uk\">Inglés ") ;
document.writeln(" </select> ") ;
document.writeln(" </div> ") ;
document.writeln(" </form> ") ;
  break ;

  case 4: /* Italien */
document.writeln("<form method=POST name=\"form_reviseur\"> ") ;
document.writeln("<div id=reviseur> ") ;
document.writeln("Revisori:  ") ;
document.writeln("<select name=\"select_reviseur\" onChange=\"CSURLPopupShow(\'form_reviseur\', \'select_reviseur\', \'_top\')\"> ") ;
document.writeln("<option selected>Lingue ") ;
document.writeln("<option value=\"fr\">Francese ") ;
document.writeln("<option value=\"uk\">Inglese ") ;
document.writeln("<option value=\"sp\">Spagnolo ") ;
document.writeln("</select> ") ;
document.writeln("</div> ") ;
document.writeln("</form> ") ;
  break ;


  default : break ;
}






