// JavaScript Document
function breakFrames() {
	top.location.href = location.href;
}

if (window != top) {
	breakFrames();
}