//
// Defeat spambot scanning
//
// (they will need to execute this code in order
// to actually be able to get the fully
// formed e-address)
//
// writes out mail to address without using
// the 'at' symbol
//


function make_eddress( name, address )
{
  document.write( name + "&#064;" + address );
}

function make_mail_to( preamble, name, address, linktext )
{
  document.write(  '<a class="footerlink" ' + preamble + ' href=' + '"mail' + 'to' + '&#058;' );
  make_eddress(  name, address );
  document.write( '">' + linktext + '</a>' );
}





