// prevents link sites from displaying the site within their frameset.
function breakout_of_frames()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}

// removes ugly dotted line around links in IE
function removeFocusOnAllLinks(){
for(var i=0 ; i < document.links.length ; i++)
document.links[i].onfocus=blurLink;
}

function blurLink() {
if (this.blur) this.blur();
}