// forceFrame.js


if (parent.location.href == self.location.href) {
    var str = self.location.href; 
    var base = 'http://www.haras-la-grandiere.com/fr/';
    if (str.indexOf(base) != -1) {
        str = str.substr(base.length,str.length);
        window.location.href = base+'index.html?'+str;
    }
}