var table_psw = new Array(20) ;

function corresp(page,psw) {
  this.page = page ;
  this.psw = psw ;
}

// une ligne par groupe
// donc chaque groupe a un numéro

table_psw[1] = new corresp("maitre.htm","toto" );
table_psw[2] = new corresp("eleve.htm","titi" );
table_psw[3] = new corresp("formationromande-doc.htm","dirom" );
table_psw[4] = new corresp("aptlf-doc.htm","aptlfmembres" );

// etc.

function go_page(n,psw) {
  if (table_psw[n].psw == psw) {
    window.location = table_psw[n].page ;
  }
}
