// ***********************************************************************
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CONFIG A MODIFIER !!!!!!!!!!!!!!!!!!!
// Lien URL de la page du site de Radio-canada a appeler. 
var strLienRadioCanada = "http://www.radio-canada.ca/sedna/";
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!! / CONFIG A MODIFIER !!!!!!!!!!!!!!!!!!!



// ***********************************************************************
// Verifier si dans un frame chez Radio-Canada. 

if (this.parent == this) {
//if (this.name == '') {
	var strLocationHREF = location.href;
	strLocationHREF = strLocationHREF.split("//");
	strLocationHREF = strLocationHREF[1].substring(strLocationHREF[1].indexOf("/"),strLocationHREF[1].length);
	document.location.href = strLienRadioCanada + "?p=" + (strLocationHREF);
}


