/* Break out of frames function */

 function checkStatus() {
   page = self.location.href;
   if (page != top.location.href) {
      top.location.href = page;
      return true;
      }
   }
