/* Hiding my email address from spambots.  
   Even if they download this script, they won't see an address in it.
   They'd have to actually run the script (or have a human read it) to get the address, 
   something they are not likely to do. */

function ShowMail(whichMail,makeLink) {

var domain2   = "fire.ca";
var domain1   = "denman";
var name2     = new Array ("master", "ef", "uty", "") ;
var name1     = new Array ("web", "chi", "dep", "");
var protocol1 = "mai";
var protocol2 = "lto";
var protocol  = protocol1 + protocol2;
var link = name1[whichMail] + name2[whichMail] + String.fromCharCode(64) + domain1 + domain2;

if (makeLink==0) {
    document.writeln(link);
  } else {
    document.writeln("<a href=\"", protocol, ":", link, "\">", link, "</a>");
  }
}

// end of javascript

