function openInNewWindow(url) {
  // Change "_blank" to something like "newWindow" to load all links in the same new window
  var newWindow = window.open(url, '_blank');
  newWindow.focus();
  return false;
}