/*
//subSection = 1 
the above is required in the head of the document in order to display the correct sub menu
*/

mI = 0

function mainWrite(){

	document.write('<p align=left>')
		for(i=0;i<m_menu.length;i++)
			{
				document.write('<a href="text.asp?subsection=' + i + '&thepage='+m_menu[i][0]+'">')
				document.write(m_menu[i][0])
				document.write('</a> -- ')
				
			}
	document.write('</p>')
	
	if(subSection!=-1){
					document.write('<br><br> ')
	
	var sec = eval('s_menu'+subSection+'.length') 
	
	for(i=0;i<sec;i++){
				document.write('<a href="text.asp?subsection=' + subSection + '&thepage='+eval('s_menu'+subSection+'[i][0]')+'">')
				document.write(eval('s_menu'+subSection+'[i][0]'))
				document.write('</a><br> ')
	}

	}
}

mainWrite()
