<!--



// use <PRE> to enable indentation via spaces

document.write('<table width=193 cellspacing=0 cellpadding=0 align=center bgcolor=#f5f5f5>')



// loop through elements of outline "array"

for (var i = 0; i < outline.length; ++i) {

	// if current item's state is true

	if (outline[i].state) {

		// place three spaces for each nesting (depth * 1 spaces)

		for (var j = 0; j < outline[i].depth * 1; ++j) {

			//document.write('')

			

		}



		// follow indentation with picture, another space, text, and new line

		document.write(outline[i].pic, '', outline[i].text, '</td></tr>')

	} else {

		// current item's state is false (skip all its children)

		var previous = i

		for (var k = i + 1; k < outline.length && outline[k].depth >= outline[previous].depth; ++k) {

			++i

		}

	}

}



// end <PRE> to return to normal formatting

document.write('</table>')



// -->



