﻿// hideemail.js// script written by:// http://zillionbucks.com/javascript/hideemail.html// Copy the hideemail.js script below, into Notepad or Simpletext, and save as "hideemail.js"// Upload to the root directory of your site// Make a "call" to the hideemail.js script from your web page// Activate the hideemail function with the proper parameters explained below, in the place on the page where you want the email address to appear. <!--function hideemail(name, domain, display) {displayed=(typeof(display)=="undefined") ? name+"@"+domain : displaydocument.write('<a href=mailto:' + name + '@' + domain + '>' + displayed +'</a>');}// -->