Ok, I am using an iframe on a page. The content within the iframe I have no control over and is being utilized with an Adobe Flash program.
But once the form is sum
I believe you want this
if(this != top){ top.location.href = this.location.href; }
To break out
It might need the document reference too... I'm not at a computer to check.
if(this != top){ top.document.location.href = this.document.location.href; }