// JavaScript Document

function emailPage(t) {
  var script = "I thought you might be interested in " + t + ".\n\nYou can view it at\n" + window.location;
  var subject = encodeURI(t + " from UK Garden Living");
  window.location.href = 'mailto:?subject=' + subject + '&body=' + encodeURI(script);
}
