function breakout_of_frame()
{
  // see http://www.thesitewizard.com/archive/framebreak.shtml
  // for an explanation of this script and how to use it on your
  // own website
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}

function make_visible()
{
	var elem = document.getElementById("terms");
	if (elem.style.display == "")
	{
		elem.style.display = "none";
		changeTextById("view","View");
//		document.getElementById('view').innerText = "View";
	} else {
		elem.style.display = "" ;
		changeTextById("view","Hide");
//		document.getElementById('view').innerText = "Hide";
	}
}

