// JavaScript Document
// to prevent robots to look for mailto from html page.
// this code was modified from the idea in www.faketp.com/safemail/
 function hide_contact(name, domain, subject, display)
 {      displayed=  (typeof(display)=="undefined") ? name+"@"+domain : display
         document.write ('<a href="mailto:'+ name + '@'+domain+'?subject=' + subject + '">'+ displayed+'</a>');
 }