
    var o = self;
    // check if it's a Google or other search engine cached page - we let that be and don't jump out
    var url=self.location.toString();
     
    var pos1 = url.search(/search/);
    var pos2 = url.search(/cache/);
     
    if (o.parent.frames.length != 0) {
     var url2 = o.parent.location.toString();
     
    }
     

    if  ((pos1 == -1 ) && (pos2 == -1)) {
     if (o.parent.frames.length != 0) eval("o.par"+"ent.loc"+"ation=u;");
     if (self.location != u) eval("o.loca"+"tion=u;");
     
    } 