<!-- 

var lhs = "james";
var rhs = "jamesgower.com";

function print_mail_to_link() 
{
   document.write("<a href=\"mailto");
   document.write(":" + lhs + "@");
   document.write(rhs + "\">" + lhs + "@" + rhs + "<\/a>");
}

//-->