/*
Keep iframe in frame script - By connectage.com
*/
// If page is not loaded in iframe
if (top == self) {
        var oldURL = top.location.href;
        var tmp1URL = oldURL.replace("/forum/", "/");
        var tmp2URL = tmp1URL.replace("/viewforum.php?", ".html?rb_v=viewforum&");
        var tmp3URL = tmp2URL.replace("/viewtopic.php?", ".html?rb_v=viewtopic&");
        var newURL = tmp3URL.replace("index.php", "forums.html");
//        alert ('old: ' + oldURL + ' new: ' + newURL);
        // Redirect to Joomla page
        top.location.replace(newURL);
}