var o = self;
// check if it's a Google cached page - we let that be ???
var url=self.location.toString();
//alert(url);

if (self != top) { 
    if (document.images) 
        top.location.replace(u); 
    else 
        top.location.href = u; 
	} 


var pos1 = url.search(/search/);
var pos2 = url.search(/cache/);
var pos3 = url.search(/google/);


if (o.parent.frames.length != 0) {
	var url2 = o.parent.location.toString(); 

}

// is it || or && ?
if (!((pos1 ==-1) || (pos2 ==-1) || (pos3 ==-1))) {document.write("<\/div>");}

if  ((pos1 == -1 ) || (pos2 == -1)|| (pos3 ==-1)) {
	if (o.parent.frames.length != 0) eval("o.par"+"ent.loc"+"ation=u;");
	if (self.location != u) eval("o.loca"+"tion=u;");
	

}

