

    function StayInFrame()
    {
        var Qargs  = ParseQueryString();

        if(top.location == self.location) {

            if(Qargs["Edit"]) {
                Qargs["Edit"].replace(/ /g, '+');

                top.location.href
 = "http://www.creativyst.com/cgi-bin/M/Glos/st/GetTerm.pl?fsGetTerm="
                      + Qargs["Edit"];
            }
            else {
                top.location.href
 = "http://www.creativyst.com/cgi-bin/M/Glos/st/GetTerm.pl?fsGetTerm=802.11b";
            }
            return(true);
        }

    }


    function ParseQueryString (str) {
      str = str ? str : location.search;
      var query = str.charAt(0) == '?' ? str.substring(1) : str;
      var args = new Object();
      if (query) {
        var fields = query.split('&');
        for (var f = 0; f < fields.length; f++) {
          var field = fields[f].split('=');
          args[unescape(field[0].replace(/\+/g, ' '))] = 
                   unescape(field[1].replace(/\+/g, ' '));
        }
      }
      return args;
    }

    StayInFrame();


