<!-- Functions.js - All my JavaScript functions -->
// 
// Function to hide addresses from spam harvesting robots. Note "Mailto" is
// in hex, and we reverse the parameters.
//
function show_addr(ext,domain,user)
{
document.write(' <a href="');
document.write('&#109;&#97;&#105;&#108;&#116;&#111;');
document.write(':');
document.write(user);
document.write('&#64;');
document.write(domain);
document.write('.');
document.write(ext); 
document.write('">'); 
//
// Use the address as the visible text
//
document.write(user);
document.write('&#064;');
document.write(domain);
document.write('.');
document.write(ext); 
document.write('<\/a>');
}



