// Break frame
function changePage() {
  if (self.parent.frames.length == 0)
    self.parent.location = "index.htm";
  return true;  
}

// Remove focus from navigation menu, necc. for IE browsers
function windowFocus(){
  if (window.focus)
    window.focus();
  return true;
}
