function IsInFrame(){
	if (self != top){
		return true;
	}else{
		return false;
	}
}

if (IsInFrame()){
	top.location.href = self.location.href;
}

