// Silly function to avoid having spam spiders
// pick up the e-mail address too easily
function nospam(d,h,n)
{
var atcontainer="nospam@apple.com"
var atchr;
var dotchr;
var em;

   atchr = atcontainer.substring(6,7);
   dotchr = atcontainer.substring(12,13);
   em = n + atchr;
   em += h + dotchr + d;
   return em;
}

function mailref(obfusmailto)
{
var n = "linda";
var h = "felixalacampagne";
var d = "be";
var em = nospam(d,h,n);

   re = /NOSPAM/g;
   obfusmailto = obfusmailto.replace(re, em);

   document.write(obfusmailto);
}