<!--
/*
Use on any to create e-mail hyperlinks in the page.  Masks our e-mail addresses from spam web crawlers.

Paremeters:
  mail_name = mail_name@penlink.com
  link_text = the text to show up in the hyperlink on the page
  mail_sub = to be entered into the Subject line of the e-mail
*/

function show_email(mail_name, link_text, mail_subj)
{
  var href_type = "mailto:";
  var delimiter = "\@";
  var domain_prefix = "penlink";
  var domain_suffix = ".com";
  var subject_str = "?subject=";
  var write_text = "\<a href='" + href_type + mail_name + delimiter + domain_prefix + domain_suffix + subject_str + mail_subj + "'>" + link_text + "\<\/a\>";
  document.write(write_text);
}
//-->

