<!-- 
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='' >Seleciona</option>");
document.write("<option style='background-color: #d9f4bb' value='1'>Veritats i errors doctrinals</option>");
document.write("<option style='background-color: #dfd9fb' value='2'>Articles d’estudi</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("Baptisme en el Nom de Jesús","CA_Baptisme.html");
   Tema [j++] = new Option("El Do de la Justificació","CA_Justificacio.html");
   Tema [j++] = new Option("L’esperança de la resurrecció","CA_Resurreccio.html");
   Tema [j++] = new Option("La Pasqua i el Sopar del Senyor","CA_Sopar.html");
   Tema [j++] = new Option("La Trinitat ¿ Tradició o Revelació?","CA_Trinitat.html");
   Tema [j++] = new Option("¿Infern de Foc?","CA_Infern.html");
   
  }
 
  if (Primary == 2)
{
   Tema [j++] = new Option("Seleziona","");    
   Tema [j++] = new Option("El regne de Deu ¿Realitat o Al·legoria?","CA_reino.html");
   Tema [j++] = new Option("Una ensenyança i una fe","CA_UnaFe.html");
   Tema [j++] = new Option("En el principi","CA_Principi.html");
   Tema [j++] = new Option("La Oració","CA_Oracio.html");
   Tema [j++] = new Option("La Fe, L’esperança i L’amor","CA_FeEsperancaAmor.html");
   Tema [j++] = new Option("La veritable fe","CA_VeritableFe.html");
   Tema [j++] = new Option("La Bíblia i el nostre futur","CA_BibliaFutur.html");
   Tema [j++] = new Option("La Bona Nova i el Reine","CA_BonaNova.html");
   Tema [j++] = new Option("Nous cels i Nova Terra","CA_CelsTerra.html");
   Tema [j++] = new Option("La congregació de Deu","CA_Congregacio.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="#dfd9fb";
	if(j==2) ctl.options[i].style.backgroundColor="#cfeefe";
	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; 
 }
// -->
