function openNewWindow(contents) {
  popupWin = window.open(contents,
  'open_window',
  'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=640, height=480, left=0, top=0')
}

function renderEmail(subject) {
  var email = "russ";
  var domain = "gmjrnfldraft.com";
  subject = escape(subject);
  document.write("<a href=" + "mail" + "to:" + email + "@" + domain + "?subject=" + subject + ">" + email + "@" + domain + "</a>");
}