function breakout_frame() {
	// www.thesitewizard.com/archive/framebreak.shtml
	if ( top.location != location ) {
		top.location.href = document.location.href;
	}
}

function breakout_frame2() {
	// code.dreamincode.net/snippet96.htm
	if ( parent.frames.length > 0 ) {
		parent.location.href = self.document.location;
		// parent.location.href = location.href;
	}
}