// Script:		ForceFrameset.js - Force proper frameset for search result page within website SM Club de France
// Author:		Clemens Maas
// Copyright:	(c)  2002, SM Club de France
//
	if ( window == top.window )
	{
//		if ( opener && opener.document.title == 'SM Club de France - Recherche' )
		if ( opener )
		{	

			var locationPath = window.location.href;	// force text object

			if  (  locationPath.split  )
			{
				var result = locationPath.split( "\/" );

				if ( result.length > 2 )
				{
					opener.parent.frames[0].location = result[ result.length - 1 ];
					history.back();
				}
			}
		}
	}
