var DirectoryOffset = "";
var WhichBasePage   = "default.asp";
if ( (top.gfOurFrames == null || top.gfOurFrames != true)
  && self.location.href.indexOf("unprotectedframe") < 1  ) {
// if (top == self) {  
    var fReload  = true;
    var ThisPage = self.location.pathname;

    if (self.gWhichBasePage != null) {
        if (self.gWhichBasePage.length > 0) {

        WhichBasePage = self.gWhichBasePage;
        }
    }
    if (self.gDirectoryOffset != null) {
        if (self.gDirectoryOffset.length > 0) {

        DirectoryOffset = self.gDirectoryOffset;
        }
    }


    if ( navigator.appName == "Netscape" && navigator.appVersion.charAt(0) == "4" ) {
        setTimeout("top.location.href = '" + DirectoryOffset + WhichBasePage + "?subframe=" + ThisPage + "'", 5000  );
        fReload = false;
    }
    if ( fReload ) {
        top.location.href = DirectoryOffset + WhichBasePage + "?subframe=" + ThisPage;
    }
}
