
/** This attempts to break out of frames */
function break_frames() {
	if (top.location != location) {
		top.location.href = document.location.href;
	}
}

window.onload=break_frames;

