<!--
  function mailsome1() {
  var currentURL = parent.location.href
  var storyURL;
  // Check if we're on the first page of the story or not
  if( currentURL.charAt( currentURL.length - 7 ) != "_" ) {
    storyURL = currentURL;
  } else {
    storyURL = currentURL.substring( 0, currentURL.length - 7 ) + ".aspl";
  }
  var toLine = prompt("Enter recipient's email address:", "whatEmail@whatDomain.com");
  var subjectLine = "www.IndependentMedicalExaminer.com - I recommend this site";
  if( toLine != null ) {
    parent.location.href = 'mailto:' + toLine + '?subject=' + subjectLine + '&body=' + storyURL;
  }
}
//-->
