﻿
//used to make the email address be invisible to web crawler spiders.
function getemail(user, site){
              document.write('<a href=\"mailto:' + user + '@' + site + '\">');
              document.write( user + '@' + site + '</a>'); 
            }

