
function MAJ_frames(frame_haut,frame_gauche)
{
	var location_haut=new String(top.haut.location);
	var location_gauche=new String(top.left.location);
	racine_haut=location_haut.substring(0,location_haut.lastIndexOf('/'));
	racine_gauche=location_gauche.substring(0,location_gauche.lastIndexOf('/'));
	fichier_haut=location_haut.substring(location_haut.lastIndexOf('/'),location_haut.length);
	fichier_gauche=location_gauche.substring(location_gauche.lastIndexOf('/'),location_gauche.length);
	fichier_frame_haut=frame_haut.substring(frame_haut.lastIndexOf('/'),frame_haut.length);
	fichier_frame_gauche=frame_gauche.substring(frame_gauche.lastIndexOf('/'),frame_gauche.length);

	if (fichier_haut!=fichier_frame_haut)
	{	top.haut.location = racine_haut + '/' + frame_haut;
	}
	if (fichier_gauche!=fichier_frame_gauche)
	{	top.left.location = racine_gauche + '/' + frame_gauche;
	}
}

