
  // Philip Hui email.js
  // -------------
  // choose the appropriate javascript according to
  // the user's e-mail address


var name = "phil";
var server = "yvrforestry.com";
var mail = name + "@" + server;

var title = "Philip Hui";

document.write("<a href=\"mailto:"+mail+"?subject=Questions or comments from YVR Forestry web site\">"+title+"</a>");

