<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>

<body>
 <!-- Paste this code into an external JavaScript file named: emailThisPage.js  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Toicontien :: http://www.webdeveloper.com/forum/showthread.php?t=155379
Licensed under: Public Domain */

function emailPage() {
  var messageText = 'Hello, I found a great web page at ' + window.location;
  var subjectText = 'Check out this Website';
  var email = prompt("Enter your friend's email address:", '');
    window.location = 'mailto:' + email +
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);
  }
}
</body>

</html>
