I think you were almost there. Have you tried:
if(window.parent) {
window.parent.onbeforeunload = null;
null;
window.parent.location.replace(self.location.href);
}
or, alternatively:
window.parent.prevent_bust = 0;
Note: I didn't actually test this.
