// write out the webmaster's email address using javascript to avoid SPAM
username = "ctyrrell";
domain = "pnc.com.au";
linktext = "Colin Tyrrell";
document.write('<A HREF="mail' + 'to:' + username + '@' + domain + '">' + linktext + '</A>');

