//This javascript code creates an mailto: link for sending comments to me.
//Hopefully this will confuse the spambots


function doMailto(user,domain){
var m = user + "@" + domain;
document.write('Send comments to: <a href="mailto:' + m + '">' + m + '</a>\n');
}


