
  // PhoenixRC email.js
  // -------------
  // choose the appropriate javascript according to
  // the user's e-mail address


var name = "jbtthomson";
var server = "shaw.ca";
var mail = name + "@" + server;

var title = "Jim Thompson";

document.write("<a href=\"mailto:"+mail+"?subject=Questions or comments from Phoenix RC web site\">"+title+"</a>");


