<!-- Paste this code into an external JavaScript file named: emailThisPage.js  -->

function emailPage() {
  var messageText = 'Courtesy of the Florida Patriot Guard - an American Legion Tradition ' + window.location;
  var subjectText = 'Tribute Page for Cpl Angelo Vaccaro';
  var email = prompt("Enter your friend's email address:", '');
  if ( (email == "") || (email == null) ) {
      alert("You need to enter an e-mail address");
      emailPage();
  } else {
    window.location = 'mailto:' + email +
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);
  }
}


