function emailPage() {
  var messageText = 'Hello, I found a great web page about dental care at the following URL: ' + window.location  ;
  var subjectText = 'Check out the Website for Dr E Esther Lopez DDS';
  var email = prompt("Enter your friend's email address:", '');
    window.location = 'mailto:' + email +
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);
  }