function showitem(item)
{
  document.getElementById(item).style.visibility="visible";
}

function hideitem(item)
{
  document.getElementById(item).style.visibility="hidden";
}

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

