<!--
var newURL = self.location.protocol + '//' + self.location.host + self.location.pathname.substring(0,5) + '/index.html';

if(window.top==self) { 
    var parentURL = newURL;
    var childURL = window.location.href;
    var reframeURL = parentURL + "?" + childURL;
    location.href = reframeURL;
}
//-->