// JavaScript Document
u = window.location;
m = "I thought this might interest you...";

function mailThisUrl() {
  good = true
  if (good) {
    // the following expression must be all on one line...
    window.location = "mailto:?subject="+m+"&body="+document.title+" "+u;
  }
}

