/* AUTEUR: Naigeon */
/* DATE DE CREATION: 18/04/1999 */

<!-- Debut script

function VersAncre( unePage, uneAncre )
{
var nframes = parent.frames[ unePage ].length ;
if( nframes == 0 )				
// Cas général : accès au frame central (lui-même sans frame imbriqués)
	with( parent.frames[ unePage ].location )
	{
		ifin = href.lastIndexOf( "#" ) ;
		if( ifin < 0 ) ifin = href.length ;
		href = href.substring( 0, ifin ) + "#" + uneAncre ;
	}
else
// Cas d'un frame central ayant lui-même des frames (ex.: pren_cadres),
// dont le deuxième (index 1) est le frames visé (ex.: pren_mus).
	with( parent.frames[ unePage ].frames[ nframes-1 ].location )
	{
		ifin = href.lastIndexOf( "#" ) ;
		if( ifin < 0 ) ifin = href.length ;
		href = href.substring( 0, ifin ) + "#" + uneAncre ;
	}
}

//  Fin script -->

