/*
Rechargement des frames - 2010, Pascal BENITO

Recharge des pages dans leur frame d'origine
*/

function checkframe()
	{
	if ( parent.frames.length < 2 )
		parent.location.href="../index.html?"+escape(location.href);
	}

function loadframe()
	{
	var urlframe=location.search.substring(1);
	if ( urlframe != "" )				
		parent.principale.location.href=unescape(urlframe);		
	}

