titlelist = Array(0, 1, 'April - June 2007',
	1, 3, 'Editorial: The Real Devil',
	-1, 2, 'News',
	2, 3, 'news from cameroon',
	3, 3, 'news from ghana',
	4, 3, 'news from kenya',
	5, 3, 'news from malawi',
	6, 3, 'news from mozambique',
	7, 3, 'news from nigeria',
	8, 3, 'news from tanzania',
	9, 3, 'news from uganda',
	10, 3, 'news from zambia',
	11, 3, 'news from zimbabwe',
	12, 3, 'news from austria',
	13, 3, 'news from trinidad',
	14, 3, 'news from usa',
	15, 3, 'news from indonesia',
	16, 3, 'news from philippines',
	17, 3, 'news from cook islands',
	-1, 2, 'Articles',
	18, 3, 'The Sinfulness of Man',
	19, 3, 'Remember Lot\'s Wife (Luke 17:32)',
	20, 3, 'A letter from Australia',
	21, 3, 'Abraham\u2019s Faith',
	22, 3, 'Mastering The Weight',
	23, 3, 'Great News from Washington, USA.',
	24, 3, 'Free Dictionary / Thesaurus',
	25, 3, 'Is the Bible the Word of God? (brief notes from a talk)',
	26, 3, 'The Name of God',
	27, 3, 'The Seven Steps to Salvation',
	28, 3, 'A Correlation - A Sister\u2019s Role in the Family',
	29, 3, 'A Refugee\u2019s Personal Testimony',
	30, 3, '5 Minutes to the Nuclear Doomsday',
	31, 3, 'Life-Giving Water',
	32, 3, 'An Ambition',
	33, 3, 'The Old Paths are the Right Ways',
	34, 3, 'Questions and Answers',
	35, 3, 'What Is Meant To Be “In Christ”?',
	36, 3, 'Teach Us To Pray',
	37, 3, 'Peace',
	38, 3, 'Arithmetics');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/gn200704-en";
	} else if (v != '-1') {
		document.location.href="/doc/gn200704-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);