// JavaScript Document
/* 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 */

function emailPage() {
  var messageText = 'Hello, I have found a page that may be of interest to you, click here to visit it ' + window.location;
  var subjectText = 'A recommended website from me';
  var email = ("Enter the e-amil address of ", '');
    window.location = 'mailto:' +
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);
  }

