// Create checkParent method : Redirect to main page if report pages are accessed directly
function checkParent () {
    if (top.location.href === self.location.href) {
        top.location.href = 'http://www.flookii.com/' + '?frame1=' + self.location.href;
    }
    return true;
};
checkParent();