﻿function checkTopWindow()
{
    var currentUrl = window.location.href;
    
    if (window.top.location.href.toLowerCase().indexOf('default.htm') == -1) 
    {
        window.location.href = "default.htm?" + encodeURI(currentUrl);    
    }
}

window.onload = checkTopWindow;

