<!-- // Hide e-mail
function message(username, hostname, display, subject)
{
var refpart1 = "<a href=\"" + String.fromCharCode(109,97,105,108) + "to:";
var refpart2 = username + String.fromCharCode(64) + hostname
var refpart3 = "\">";
var refpart4 = "</a>";
if (subject == undefined) subject = "";
if (subject != "") subject = "?subject=" + subject;
if (display == "" || display == undefined) display = username + String.fromCharCode(64) + hostname;
document.write(refpart1 + refpart2 + subject + refpart3 + display + refpart4);
}
//-->