function openNavigationNode(url, target) {
  var newWindow = window.open(url, target);

  newWindow.opener = top;
}
function openNavigationNode(url, target, windowFeatures) {
  var newWindow = window.open(url, target, windowFeatures);

  newWindow.opener = top;
}