
  // email-ed.js
  // -------------
  // choose the appropriate javascript according to
  // the user's e-mail address


var name = "edcannell";
var server = "stylefast.com";
var mail = name + "@" + server;

var title = "e-mail";

document.write("<a href=\"mailto:"+mail+"?subject=From astrology web sections\">"+title+"</a>");

