function deframe(frameName)
{
  window.location.href = window.frames['mid'].document.URL;
  var w=window.open("","","height=100,width=500,navbar='no'");
  var s="<html>";
  s+="<head>";
  s+="<title>Note</title>";
  s+="<script>setTimeout('window.close()',2000)</script>";
  s+="<link rel='stylesheet' href='style.css' />";
  s+="</head>";
  s+="<body><center><h1>Click BACK to restore frame</h1></center></body>";
  s+="</html>";
  w.document.write(s);
}