function goBlank(url) {
  var newWindow = window.open(url, "blankWindow");
  newWindow.focus();
}