//spam-proof email
function courier(user,display)
{
 thing = "&#064;"
 parta = "<a href=\"";
 partb = "&#109;&#097;&#105;&#108;&#116;&#111;&#058;"
 partc = "\">"
 partd = "</a>";
 parte = "&#101;&#110;&#109;&#097;&#120;"
 partg = "&#046;&#099;&#111;&#109;"
 result = parta + partb + user + thing + parte + partg + partc + display + partd;
 document.write(result);
}
