function noFrames() {
  if (self != top) {
    if (document.images) { // ensure the link still works on browsers that do not support the location.replace() method
      top.location.replace(self.location.href);
    }
    else {
      top.location.href = self.location.href;
    }
  }
}

