// Opens the given url in the window that created the popup, if it exists.
// Otherwise create a new window using the given url.
function linkToMainWindow(url) {
  if (window.opener) {
    window.opener.location.href = url;
    window.opener.focus();
  } else {
    var w = window.open(url);
    w.focus();
  };
}
