/* Javascript functions to display emails so robots can't pick them up */
/* WITH LINKS */

// Assume domain is thebathdancentre.co.uk
function generate_email_link_with_text(user, text) {
  document.write('<a href="mailto:' + user + '@thebathdancentre.co.uk">' + text + '</a>');
}

function generate_email_link(user) {
  document.write('<a href="mailto:' + user + '@thebathdancentre.co.uk">' + user + '@thebathdancentre.co.uk</a>');
}

/* WITHOUT LINKS */

// Assume domain is thebathdancentre.co.uk
function display_email(user) {
  document.write(user + '@thebathdancentre.co.uk');
}
