<!--
// Retour ŕ www.noel-paris.com si néc (pour les cookies de la commande)
//------------------------------------------
var currentLocation =  document.location.href;

if (currentLocation.indexOf( "noel-paris.com" ) == -1)
	{
	page = currentLocation.substring( currentLocation.lastIndexOf( "/" )+1, currentLocation.length);
	
	document.location = "http://www.noel-paris.com/" + page;
	}

//-->
