<!-- 
document.write("<select id='Tema' size=1 style='BACKGROUND-COLOR: rgb(255,255,255); width:218px ' onchange='CreaTema(this)' >");
document.write("<option style='background-color: #fef3cf' value='' >Seleziona</option>");
document.write("<option style='background-color: #d9f4bb' value='1'>Verità ed errori dottrinali</option>");
document.write("<option style='background-color: #dfd9fb' value='2'>Articoli di studio</option></select>");

function CreaTema(ctl)
{
var Primary = ctl.selectedIndex;
 
  if ((Primary == null) || (Primary == 0)) return;
 
  var Tema = new Array;
  var j=0;

  if (Primary == 1)
{
   Tema [j++] = new Option("Seleziona","");   
   Tema [j++] = new Option("Una Sola Dottrina e una sola Fede","IT_UnaSolaFede.html");
   Tema [j++] = new Option("Il promesso Paradiso","IT_paradiso.html");
   Tema [j++] = new Option("Il Dono della Giustificazione","IT_giustificazione.html");
   Tema [j++] = new Option("Battesimo nel nome di Gesù","IT_battesimo.html");
   Tema [j++] = new Option("Dove vanno i morti?","IT_anima.html");
   Tema [j++] = new Option("Santità della vita o del sangue?","IT_sangue.html");
   Tema [j++] = new Option("La Trinità Tradizione o Rivelazione?","IT_trinita.html");
  }
 
  if (Primary == 2)
{
   Tema [j++] = new Option("Seleziona","");    
   Tema [j++] = new Option("Il regno di Dio: Realtà o Allegoria?","IT_regno.html");
   Tema [j++] = new Option("Una Sola Dottrina e una sola Fede","IT_UnaSolaFede.html");
   Tema [j++] = new Option("Nel Principio","IT_principio.html");
   Tema [j++] = new Option("La Preghiera","IT_preghiera.html");
   Tema [j++] = new Option("La Fede, la Speranza e l’Amore","IT_FedeSperanzaAmore.html");
   Tema [j++] = new Option("La Fede autentica","IT_FedeAutentica.html");
   Tema [j++] = new Option("Cosa significa essere Cristiano?","IT_cristiano.html");	
  }

ctl=document.getElementById("pagina");
  for (i=ctl.options.length; i>0; i--)
 { 
	ctl.options[i] = null;
   }
  var j=1;
  for(i=0; i<Tema.length; i++) {
	ctl.options[i] = Tema[i];
	if(j==1) ctl.options[i].style.backgroundColor="#cfeefe";
	if(j==2) ctl.options[i].style.backgroundColor="#dfd9fb";
	if(j==3) ctl.options[i].style.backgroundColor="#fef3cf";
                if(j==4) ctl.options[i].style.backgroundColor="#d9f4bb";
	j++;
	if (j>=5) j=1
  }
 
  ctl.options[0].selected = true; 
 }
// -->
