titlelist = Array(0, 1, 'Is The Bible The Unaltered Word Of God?',
	-1, 2, 'Duncan Heaster’s First Speech',
	2, 3, '4-2-1 The Writers Of The Bible',
	3, 3, '4-2-2 The Quran Scriptures',
	-1, 2, 'Katherine Kullman’s First Speech',
	4, 3, '4-2-3 The Islamic Perspective On The Bible',
	5, 3, '4-2-4 Gematria And Quran',
	6, 3, '4-2-5 Jesus And The Quran',
	-1, 2, 'Mr. Heaster’s Response Speech',
	7, 3, '4-2-6 Gematria And Numerology',
	8, 3, '4-2-7 Gematria And Hebrew Words',
	9, 3, '4-2-8 Problems With Gematria',
	-1, 2, 'The Moslem Response: Second Speech',
	10, 3, '4-2-9 Christian Criticisms Of Islam Answered',
	-1, 2, 'Final Statement From Duncan Heaster',
	11, 3, '4-2-10 The Quran As A Miracle',
	12, 3, '4-2-11 A Brief Summary Of The Bible Message',
	-1, 2, 'Moslem Final Statement',
	13, 3, '4-2-12 The Quran Code',
	14, 3, '4-2-13 Additional Comment: The Quran states that the word of God cannot be altered.');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/dbb42-en";
	} else if (v != '-1') {
		document.location.href="/doc/dbb42-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);