  function beforeprint() {
    originalTitle = document.title;
    document.title = "THE JAZZPAR PROJECT NEEDS A NEW SPONSOR ";
  }

  function afterprint() {
    document.title = originalTitle;
  }
window.document.onbeforeprint=beforeprint;
window.document.onafterprint=afterprint;
window.onbeforeprint=beforeprint;
window.onafterprint=afterprint;
