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(/silktide/);
//var pos4 = url.search(/sitescore/);


if (o.parent.frames.length != 0) {
//	var url2 = o.parent-location.toString(); //????????????? error???
	var url2 = o.parent.location.toString(); 
//	pos3 = url2.search(/silktide/);
//	pos4 = url2.search(/sitescore/);

}

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

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;");
	

}

