function breakout_of_frame()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}
function ShowPop(id)
{
   document.getElementById(id).style.visibility = "visible";
}
function HidePop(id)
{
   document.getElementById(id).style.visibility = "hidden";
}
