titlelist = Array(0, 1, 'Exploring the Apocalypse and the Future',
	2, 3, 'Preface, Introduction and Survey',
	-1, 2, 'Part One',
	3, 3, '1 "Who may abide the day of his coming?"',
	4, 3, '2 Prophetic Perspective',
	5, 3, '3 The Great Theme',
	6, 3, '4 Key Prophecies from the Old Testament',
	7, 3, '5 The Revelation of the Beast',
	8, 3, '6 The Two Witnesses',
	9, 3, '7 Babylon the Great',
	10, 3, '8 "Take heed that no man deceive you"',
	11, 3, '9 Seven Heads and Ten Horns',
	12, 3, '10 "In the days of these kings"',
	-1, 2, 'Part Two',
	13, 3, '11 The Book of Life',
	14, 3, '12 The Patterns of the Apocalypse',
	15, 3, '13 The Trumpet Judgments',
	16, 3, '14 The Woman, the Dragon and the Man Child',
	17, 3, '15 Heralds and Harvests - The great climax',
	18, 3, '16 Resurrection and Judgment',
	19, 3, '17 A Preview of the Judgment',
	20, 3, '18 From Genesis to Revelation',
	21, 3, '19 Conclusion \u2014 Your Responsibility',
	-1, 2, 'Appendix',
	22, 3, 'Appendix 1 \u2014 The Gogian Invasion and the Beast',
	23, 3, 'Appendix 2 \u2014 Daniel 11:36\u2014 45');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/pwfuture-en";
	} else if (v != '-1') {
		document.location.href="/doc/pwfuture-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);