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


var name = "cheryl";
var server = "soularsystem.net";
var mail = name + "@" + server;

var title = "Cheryl";

document.write("<a href=\"mailto:"+mail+"?subject=Class Inquiries\">"+title+"</a>");

