﻿<!--

//   Please note that we define the replaceWindowURL function
//   before the next block of code.  This is important since
//   this code may execute "before" the page finishes loading.

// this file is required to be part of a frameset
// the following code will reload this page into the proper frameset
function doFramesRequired()
{
    if ( top == self )
    {
        var homeURL = "/index.html";
        var thisURL = unescape(window.location.pathname);
        var url = homeURL + "?" + thisURL;

        replaceWindowURL( top, url );
    }
}

if ( top == self  &&  "MSIE" == navigator.appName )
    doFramesRequired();


//-->