//
// 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_mail_to( preamble, name, address, linktext )
{

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

}


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



