/* author: Unknown */
/* Modified by: Thomas R. Scott */
/* Creation date: 2/27/2004 */
/* Version 1.1 */

/* Hopefully eliminates some of the spam address gleaning */

function showemail ( mailbox, domain, subject) {
var address
address = mailbox + "@" + domain;
document.write ("<a href=\"mailto:" + address + "?subject=" + subject + "\">" + address + "</a>");
}
