function traduzione(lang_id)
{
  // alert('function traduzione in lingua ' + lang_id);
  lang_id = setDizionario(lang_id);
  traduzioneGenerica(lang_id);

  switch(lang_id)
  {
  case 'it':
    document.getElementById('aInfo').href = "info/it/orm_immissione1.hsm";
    document.getElementById('aAiuto').href = "aiuto/it/orm_immissione1_ritiro.hsm";
    document.getElementById('aCRitiro').href = "info/it/orm_condizioni_ritiro.htm";
    document.getElementById('aCGenerali').href = "info/it/orm_condizioni_vendita.htm";
    break;    
  case 'en':
    document.getElementById('aInfo').href = "info/en/orm_immissione1.hsm";
    document.getElementById('aAiuto').href = "aiuto/en/orm_immissione1_ritiro.hsm";
    document.getElementById('aCRitiro').href = "info/en/orm_condizioni_ritiro.htm";
    document.getElementById('aCGenerali').href = "info/en/orm_condizioni_vendita.htm";
    break;    
  case 'de':
    document.getElementById('aInfo').href = "info/de/orm_immissione1.hsm";
    document.getElementById('aAiuto').href = "aiuto/de/orm_immissione1_ritiro.hsm";
    document.getElementById('aCRitiro').href = "info/de/orm_condizioni_ritiro.htm";
    document.getElementById('aCGenerali').href = "info/de/orm_condizioni_vendita.htm";
    break;    
  case 'fr':
    document.getElementById('aInfo').href = "info/fr/orm_immissione1.hsm";
    document.getElementById('aAiuto').href = "aiuto/fr/orm_immissione1_ritiro.hsm";
    document.getElementById('aCRitiro').href = "info/fr/orm_condizioni_ritiro.htm";
    document.getElementById('aCGenerali').href = "info/fr/orm_condizioni_vendita.htm";
    break;    
  }

  document.getElementById('aInfo').innerHTML = dizionario[18];
  document.getElementById('aAiuto').innerHTML = dizionario[11];
  document.getElementById('aRitorno').innerHTML = dizionario[24];
  document.getElementById('aCRitiro').innerHTML = dizionario[13];
  document.getElementById('aCGenerali').innerHTML = dizionario[14];
  document.getElementById('inputAvanti').setAttribute("value",dizionario[43]);
  document.getElementById('inputPulire').setAttribute("value",dizionario[304]);
}

