Thanks, DanO --
Here's the code (substituting the > and < that I use to mask e-mail addresses on the site:
----------------
<script type="text/javascript"><!--
function ShowEmail(address,userdomain,tld)
{
var atsign = '@';
var dot = '.';
document.write('<a href=mailto:' + address + atsign + userdomain + dot + tld + '>');
document.write(address + atsign + userdomain + dot + tld + '</a>');
}
// --></script>
------------------
and here's the code that creates the clickable e-mail address on the page itself:
------------------
<script language="javascript" type="text/javascript" language="JavaScript1.2" name="ShowEmail"> ShowEmail ('office', 'firstuustlouis', 'org');</script>
------------------
Does this give you enough information to be able to answer my original questions 1, 2, and 3?
Many thanks,
Terry
------------------
[This message has been edited by terry (edited October 21, 2003).]
[This message has been edited by terry (edited October 21, 2003).]