titlelist = Array(0, 1, 'May - June 2004',
	1, 3, 'Editorial When Troubles Mount Up',
	-1, 2, 'News',
	2, 3, 'news from burundi',
	3, 3, 'news from cameroon',
	4, 3, 'news from ghana',
	5, 3, 'news from kenya',
	6, 3, 'news from mauritius',
	7, 3, 'news from mozambique',
	8, 3, 'news from namibia',
	9, 3, 'news from nigeria',
	10, 3, 'news from south africa',
	11, 3, 'news from tanzania',
	12, 3, 'news from uganda',
	13, 3, 'news from zambia',
	14, 3, 'news from zimbabwe',
	15, 3, 'news from albania',
	16, 3, 'news from azerbaijan',
	17, 3, 'news from belarus',
	18, 3, 'news from croatia',
	19, 3, 'news from israel',
	20, 3, 'news from italy',
	21, 3, 'news from kazakhstan',
	22, 3, 'news from latvia',
	23, 3, 'news from lithuania',
	24, 3, 'news from moldova',
	25, 3, 'news from norway',
	26, 3, 'news from pakistan',
	27, 3, 'news from poland',
	28, 3, 'news from russia',
	29, 3, 'news from serbia',
	30, 3, 'news from turkey',
	31, 3, 'news from turkmenistan',
	32, 3, 'news from ukraine',
	33, 3, 'news from uzbekistan',
	34, 3, 'news from canada',
	35, 3, 'news from jamaica',
	36, 3, 'news from mexico',
	37, 3, 'news from trinidad',
	38, 3, 'news from india',
	39, 3, 'news from philippines',
	40, 3, 'news from australia',
	-1, 2, 'Articles',
	41, 3, 'Alone',
	42, 3, 'Should We Preach Only Smooth Things?',
	43, 3, 'The Scriptures are Profitable',
	44, 3, 'The Eternal Word "Your word, O Lord, is eternal; it stands firm" (Ps 119:89).',
	45, 3, 'God’s Commands Are Always Creative',
	46, 3, 'High and Holy Calling by the Lord',
	47, 3, 'Tribute to Iran/Pakistan Brothers and Sisters',
	48, 3, 'The Wisdom of God is to Avoid Evil',
	49, 3, 'Understanding God\u2019s Word \u2013 Proverbs 4:7',
	50, 3, 'Resurrection and Judgment',
	51, 3, 'God Knows our Destiny',
	52, 3, 'Why Jesus Had to Die',
	53, 3, 'Favourite Meal',
	54, 3, 'Personal Testimony',
	55, 3, 'The Saint - The Faithful in Christ "Signs" of the Saintly Life',
	56, 3, 'Preaching in Kenya Eastern, Nyanza and Coastal Areas',
	57, 3, 'Sleepers (Matthew 26:36-46)',
	58, 3, 'The Worries and Elations of a Westerner\u2019s First preaching Experience',
	59, 3, 'The Pre-existence of Christ - Concluding article.',
	60, 3, 'Wisdom Sets Men Free',
	61, 3, 'Unity and Hope of Life',
	62, 3, 'The Coming of the Lord Jesus',
	63, 3, 'The Education of Mankind',
	64, 3, 'Exhortation: The fruits of the Spirit',
	65, 3, '"Fearfully and wonderfully made" Psalm139:14 Part 4 The Heart',
	66, 3, 'The Parable of the Prodigal Son',
	67, 3, 'The Man Gideon',
	68, 3, 'Making Decisions',
	69, 3, 'Press Towards the Goal',
	70, 3, 'The Call',
	71, 3, 'Thoughts On The Road',
	72, 3, 'The Great Commission – Exaltation',
	73, 3, 'Will He Find The Faith?');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/gn200405-en";
	} else if (v != '-1') {
		document.location.href="/doc/gn200405-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);