﻿// javascript File

breakout_of_frame();

/* rollin and out of buttons */
function rollin(item)
{
	item.style.backgroundColor = "#fffff0";
}

function rollout(item)
{
	item.style.backgroundColor = "#ffffff";
}

function breakout_of_frame()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}

