function mailadd (which) {
   var one = "enquiries@";
   var two = "pcbonline.c";
   var three = "o.uk";
   if (which==2) {
      one = "add@";
      two = "marketingbooster.tlist.n";
      three = "et";
   }
   return one+two+three;
}
function mailtag (which,subject) {
   return '<a href=\"mailto:' + mailadd(which) + '?subject=' + subject + '\">';
}
function maillink (which,text,subject) {
   if (!text) text = mailadd(which);
   if (!subject) subject = "Email from web site";
   return mailtag(which,subject) + text + "</a>";
}
