function menu()
{
	var url, f, l;
	url = document.location + '';
	f = url.indexOf( '_' );
	l = url.lastIndexOf( '_' );
	if( l == f )
	{
		l = url.lastIndexOf( '.htm' );
	}
	url = url.substring( 0, l ) + '.htm';

	alist = document.all.tags("A");
	for( i = 0 ; i < alist.length ; i++ )
	{
		if( alist[i].href == url )
		{
			if( alist[i].className == 'atitulo' )
			{
				tab = alist[i].parentElement.parentElement.parentElement.parentElement;
				tr = alist[i].parentElement.parentElement;
				for( j = 0 ; j < tab.rows.length ; j++ )
					if( tr == tab.rows[j] )	next = j+1;
				tab.rows[next].style.display = 'block';
	
			}
			else
			{
				up = 	alist[i].parentElement.parentElement.parentElement.parentElement.parentElement.parentElement; 
				if( up.style.display == 'none' )
					up.style.display = 'block';
			}
				
			alist[i].style.color = '#ffffff';
		}
	}
}

function glossario( str )
{
	remoteWin = window.open( 	'glossario.htm#' + str,"Glossário",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=300,height=300,screenX=50,screenY=10,top=10,left=10');
	remoteWin.focus();
}
