function writeReset(resetN,resetNN)
{
if (document.documentElement )
	{
document.write('<span class\=\"disc c13\">\&\#091\;\&\#126\;\&\#160\;');
document.write('<a href\=\"\#start\" onclick\=\"resetTOC\(\'' + resetN + '\',\'' + resetNN + '\'\)\; return false\;\" ');
document.write('onkeypress\=\"resetTOC\(\'' + resetN + '\',\'' + resetNN + '\'\)\; return false\;\">');
document.write('<span class\=\"c15\">Reduce the list<\/span><\/a>\&\#160\;\&\#093\;<\/span>');
	return;
	}

else { return; }
}


function resetTOC(rstA,rstB)
{
document.getElementById(rstA).style.display='none';

var reset2 = rstA + "a";
document.getElementById(reset2).style.display='inline';

location.href="#" + rstB;
}


function writeStart(startN)
{
if (document.documentElement )
	{
startNN = startN + "a";
document.write('<span id\=\"' + startNN + '\">');
document.write('Show the <a href\=\"\#' + startN + '\" ');
document.write('onclick\=\"showTOC\(\'' + startN + '\'\)\; return false\;\" onkeypress\=\"showTOC\(\'' + startN + '\'\)\; return false\;\">');
document.write('Sub-Titles<\/a>.<\/span>');
	return;
	}

else { return; }
}

function showTOC(toc)
{
if (document.documentElement )
	{
	document.getElementById(toc).style.display='block';

	var ha = toc + "a";
	document.getElementById(ha).style.display='none';

	return;
	}
else { return; }
}
