// JavaScript Document
function checkRef()
{
// fetch current URL...	
	URL=self.location.href;
	separateur=URL.lastIndexOf("/");
	fin=URL.length;
	page='Stage_Entreprise/'+URL.substring(separateur+1,fin);
//	alert (page);
	if (parent.frames.length == 0 ) {
//		parent.location.href = 'http://localhost/AEC-V3/index.php?topic='+page;
		parent.location.href = 'http://www.equitcomportementale.com/index.php?topic='+page;
	}
	return
}
checkRef()

