titlelist = Array(0, 1, 'Are The Miraculous Gifts Of The Holy Spirit Possessed Today?',
	2, 3, 'Introduction',
	-1, 2, 'Duncan Heaster’s First Speech',
	3, 3, '3.1.1 Holy Spirit Gifts Not Now Possessed',
	4, 3, '3.1.2 Name It And Claim It',
	5, 3, '3.1.3 What Are The Gifts Of The Holy Spirit?',
	6, 3, '3.1.4 Slain In The Spirit?',
	7, 3, '3.1.5 That Which Is Perfect',
	-1, 2, 'Pastor Battle’s First Speech',
	8, 3, '3.1.6 Praise God For The Spirit',
	-1, 2, 'Duncan Heaster’s Second Speech',
	9, 3, '3.1.7 The Spirit On All Flesh',
	10, 3, '3.1.8 Catholic Charismatics',
	-1, 2, 'Pastor Battle’s Second Speech',
	11, 3, '3.1.9 Holy Spirit Gifts Not Taken Away',
	-1, 2, 'Questions From The Floor',
	12, 3, '3.1.10 Receiving The Holy Spirit',
	13, 3, '3.1.11 The Spirit Intercedes',
	14, 3, '3.1.12 Born Of Water And Spirit',
	15, 3, '3.1.13 A Living Sacrifice',
	16, 3, '3.1.14 Will There Be A Rapture',
	17, 3, '3.1.15 Healed Of Cancer',
	18, 3, '3.1.16 Fruit And Gifts Of The Spirit',
	-1, 2, 'Summation',
	19, 3, '3.1.17 False Claims Of Spirit Possession',
	20, 3, '3.1.18 Jesus Is The Answer');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/dbb31-en";
	} else if (v != '-1') {
		document.location.href="/doc/dbb31-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);