titlelist = Array(0, 1, 'July - August 2004',
	2, 3, 'Editorial:  The Peacemakers',
	-1, 2, 'News',
	3, 3, 'news from benin',
	4, 3, 'news from botswana',
	5, 3, 'news from cameroon',
	6, 3, 'news from ghana',
	7, 3, 'news from kenya',
	8, 3, 'news from malawi',
	9, 3, 'news from nigeria',
	10, 3, 'news from south africa',
	11, 3, 'news from tanzania',
	12, 3, 'news from togo',
	13, 3, 'news from uganda',
	14, 3, 'news from zambia',
	15, 3, 'news from zimbabwe',
	16, 3, 'news from albania',
	17, 3, 'news from azerbaijan',
	18, 3, 'news from belarus',
	19, 3, 'news from bosnia',
	20, 3, 'news from bulgaria',
	21, 3, 'news from greenland',
	22, 3, 'news from iran',
	23, 3, 'news from israel',
	24, 3, 'news from italy',
	25, 3, 'news from latvia',
	26, 3, 'news from lithuania',
	27, 3, 'news from macedonia',
	28, 3, 'news from malta',
	29, 3, 'news from moldova',
	30, 3, 'news from morocco',
	31, 3, 'news from norway',
	32, 3, 'news from oman',
	33, 3, 'news from pakistan',
	34, 3, 'news from poland',
	35, 3, 'news from russia',
	36, 3, 'news from serbia',
	37, 3, 'news from turkey',
	38, 3, 'news from turkmenistan',
	39, 3, 'news from ukraine',
	40, 3, 'news from st lucia',
	41, 3, 'news from china',
	42, 3, 'news from malaysia',
	43, 3, 'news from australia',
	-1, 2, 'Articles',
	44, 3, 'We must thank our God in all circumstances',
	45, 3, 'Is Anything Too Hard For The Lord?',
	46, 3, 'Sierra Leone Fraternal',
	47, 3, 'Feel Love in our Hearts',
	48, 3, 'Exhortation - Confession',
	49, 3, 'Water Baptism',
	50, 3, 'Signs of the Times',
	51, 3, 'An introduction to God\u2019s Heavenly Law   (Part 1)',
	52, 3, 'Nepal  from the eyes of a    UK  Missionary',
	53, 3, 'Report from Nepal',
	54, 3, 'One Spirit',
	55, 3, 'Give Respect to Get Respect',
	56, 3, 'The Sermon on the Mount',
	57, 3, 'Preaching the Gospel',
	58, 3, 'The Value of Seminars',
	59, 3, 'Notes on the Daily Readings  - September 1-5',
	60, 3, 'Prison Work Update',
	61, 3, 'A Thought  For A Christadelphian School',
	62, 3, 'A Message From Israel',
	63, 3, 'I\u2019m waiting for an answer from the Almighty',
	64, 3, 'Chisape Ecclesial Hall',
	65, 3, 'Let us Not Worry When Neglected',
	66, 3, 'The Spirit of Man',
	67, 3, 'Is Anything Too Hard For The Lord?',
	68, 3, 'Enter the Kingdom of God',
	69, 3, 'Pressing Towards the Prize',
	70, 3, '\'Wine is a Mocker\'',
	71, 3, '\u201cHe Whom the Father Loves, He Chastens\u201d');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/gn200407-en";
	} else if (v != '-1') {
		document.location.href="/doc/gn200407-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);