<!-- Hide from other browsers
/* This JavaScript was composed by Darbie Marlin *** Darbie at WebMaker-NW.com / */

function Mail(Name,Domain,Suffix,Subject,AltName)
{
 if (Suffix == "com") 		 { Suffix = "&#99;&#111;&#109;"; }
 else { if (Suffix == "net") { Suffix = "&#110;&#101;&#116;"; }
 else { if (Suffix == "edu") { Suffix = "&#101;&#100;&#117;"; }
 else { if (Suffix == "org") { Suffix = "&#111;&#114;&#103;"; }
 else { if (Suffix == "mil") { Suffix = "&#109;&#105;&#108;"; }
 else { if (Suffix == "gov") { Suffix = "&#103;&#111;&#118;"; }
 }}}}}
 
document.writeln('<a href="mailto:' + Name + '&#64;' + Domain + '.' + Suffix);

if (Subject == null || Subject == "x") { }
else { document.writeln('?subject=' + Subject); }
document.writeln('">');
if (AltName != null) { document.writeln(AltName + '</a>'); }
else {
document.writeln(Name +'&#64;' + Domain + '.' + Suffix + '</a>');}
}
// --          Created 10/02 ...  last modified 4/6/07  

// Stop hiding from other browsers
-->