// adapted from a tip by Joseph McLean

// writes the following items into the document:
// Email: <span class="footaddritem"><a class="maillink" href="mailto:addr">addr</a></span>

var who = "info";
var where = "bayliss-accountants.co.uk";

document.writeln("&nbsp;-&nbsp; Email: <a class=\"maillink\" href="
+ "mail" + "to:" + who + "@" + where + "?subject=Website%20Email%20Request"
+ " title=\"Email Bayliss & Co.\"" + ">"
+ who + "@" + where + "</a>");
