<!-- 
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='' >Select</option>");
document.write("<option style='background-color: #d9f4bb' value='1'>Doctrinal truths and errors</option>");
document.write("<option style='background-color: #dfd9fb' value='2'>Bible Essays</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("Select","");   
   Tema [j++] = new Option("Is There a Conflict Between Tradition and the Truth?","EN_Conflicts .html");
   Tema [j++] = new Option("About the Faith","EN_Faith.html");
  }
 
  if (Primary == 2)
{
   Tema [j++] = new Option("Select","");    
   Tema [j++] = new Option("From the Beginning","EN_Beginning.html");
   Tema [j++] = new Option("The Bible, our past and our Future","EN_Bible and Future.html");
   Tema [j++] = new Option("About the Faith","EN_Faith.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; 
 }
// -->