titlelist = Array(0, 1, 'January - February 2004',
	2, 3, 'Guest Editorial: Are we fit to rule?',
	-1, 2, 'News',
	3, 3, 'news from cameroon',
	4, 3, 'news from ghana',
	5, 3, 'news from kenya',
	6, 3, 'news from lesotho',
	7, 3, 'news from namibia',
	8, 3, 'news from south africa',
	9, 3, 'news from tanzania',
	10, 3, 'news from uganda',
	11, 3, 'news from zambia',
	12, 3, 'news from zimbabwe',
	13, 3, 'news from albania',
	14, 3, 'news from azerbaijan',
	15, 3, 'news from belarus',
	16, 3, 'news from estonia',
	17, 3, 'news from israel',
	18, 3, 'news from jordan',
	19, 3, 'news from kazakhstan',
	20, 3, 'news from latvia',
	21, 3, 'news from moldova',
	22, 3, 'news from morocco',
	23, 3, 'news from norway',
	24, 3, 'news from pakistan',
	25, 3, 'news from russia',
	26, 3, 'news from serbia',
	27, 3, 'news from tunisia',
	28, 3, 'news from turkmenistan',
	29, 3, 'news from ukraine',
	30, 3, 'news from uzbekistan',
	31, 3, 'news from chile',
	32, 3, 'news from usa',
	33, 3, 'news from china',
	34, 3, 'news from philippines',
	-1, 2, 'Articles',
	35, 3, 'Sharing One Faith in N. Tanzania',
	36, 3, 'Public Speaking \u2013 Lesson 3',
	37, 3, 'Comfort from prayer',
	38, 3, 'A Prayer for Forgiveness',
	39, 3, 'The Pre-existence of Christ',
	40, 3, 'Congratulations',
	41, 3, 'I am in Christ!',
	42, 3, 'Choices',
	43, 3, 'Love and Unity',
	44, 3, 'Jesus is the Son of God and the Son of Man:<br>Exhortation at the Zambian Bush Camp',
	45, 3, 'Austria',
	46, 3, 'In how many ways was   David like Jesus Christ?',
	47, 3, 'Is there any hope?',
	48, 3, 'Good News \u2013 What does it mean?',
	49, 3, 'This Man Receiveth Sinners',
	50, 3, 'Let us be the Light of the World',
	51, 3, 'Wilderness Journey',
	52, 3, 'True Happiness',
	53, 3, ' Fearfully and wonderfully made:  Psalm 139:14',
	54, 3, 'Our Real Future',
	55, 3, 'Ugandan Atrocities',
	56, 3, ' Justified by the Grace of God',
	57, 3, 'In Spite ofï¿½',
	58, 3, '"He is with us always"',
	59, 3, ' Sisters In The Ecclesia: Further Thoughts',
	60, 3, 'Spiritual Ears and Eyes',
	61, 3, ' Hannah Called Upon God and   He Helped Her',
	62, 3, 'Newspapers as a Prayer Guide',
	63, 3, '“Behold a Sower went forth to Sow…”',
	64, 3, 'Maintaining Daily Victory',
	65, 3, 'Should We Preach Only Smooth Things?',
	66, 3, 'Love is not Jealous (1 Corinthians 13:4)',
	67, 3, 'Confession is a Declaration of Faith',
	68, 3, 'The Day of the Lord',
	69, 3, 'Speech',
	70, 3, 'Christ\u2019s Superiority');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/gn200401-en";
	} else if (v != '-1') {
		document.location.href="/doc/gn200401-en/" + v;
	}
}

function AttachList(selobj) {
  selobj.options.length = 0;
  var cv = MM_findObj('current');
  if (cv) cv = cv.value;
  var m, j;
  var k=0;
  for(var i=0;i<titlelist.length;i+=3) {
  	m = titlelist[i+2];
  	for(j=1;j<titlelist[i+1];j++) {
  		m = '  ' + m;
  	}
  	selobj.options[k] = new Option(m, titlelist[i]);
  	selobj.options[k].className = 'sel' + titlelist[i+1];
  	if (cv == titlelist[i]) selobj.selectedIndex = k;
  	k++;
  }
}

function attachnavigation() {
  var sel = MM_findObj('topnav');
  if (sel) AttachList(sel);
  sel = MM_findObj('lownav');
  if (sel) AttachList(sel);
}

addLoadEvent(attachnavigation);