thisPage = window.location.href;

function escapeFrames() {
//if (window.location.href != top.location.href) {
//top.location.href = window.location.href;
if (parent.frames.length >= 1) {
window.top.location.href = thisPage;
return true;
}
}

escapeFrames();

