if (top != self) {
top.location = self.location;
}

if (window != top) {
top.location.href = location.href
}

if (top.window != window) {
top.location.href = window.location.href
}

if (parent.frames.length > 0) {
parent.location.href = location.href;
}

if (top.location != location) {
top.location.href = document.location.href
}

if (parent.frames.length >= 1) {
window.top.location.href = "index.html"
}