function replaceWindowURL( win, url )
{
    win.location.href = url;
}

function doFramesRequired()
{
    if ( top == self )
    {
        var homeURL = "../../shop/index.php";
        var thisURL = unescape(window.location.pathname);
        var url = homeURL + "?../.." + thisURL;
	    //document.write(url);
        replaceWindowURL( top, url );
    }
}

if ( top == self  &&  "MSIE" == navigator.appName )
    doFramesRequired();
