// JavaScript Document

window.onload = init;

function init() {
	breakout_of_frame();
}

function breakout_of_frame()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}