window.setTimeout( "breakOut()", 1000 );

function breakOut() {
	if( window != top ) {
		top.location.href = self.location.href;
	}
}