//
// 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, linkclass, linktext, postamble )
{
  document.write(  preamble + '<a class="' + linkclass + '" ' + ' href=' + '"mail' + 'to' + '&#058;' );
  make_eddress(  name, address );
  document.write( '">' + linktext + '</a>' + postamble );
}




           
           
           
           
           