// Open the URL in a new window
function openNewWindow(url, title, params) {
  var newwindow;
  if (null == title) {
    newwindow = window.open(url);
  } else {
    if (null == params) {
      newwindow = window.open(url, title)
    } else {
      newwindow = window.open(url, title, params)
    }
  }

  if (window.focus) {
    newwindow.focus();
  }

  return false;
}

// Obfuscate the email address to avoid harvesting
function m_sfcon (u) {
    pre = "mail";
    url = pre + "to:" + u;
    document.location.href = url + "@omahafbc.org";
}


