﻿/* build a mailto from username and hostname */
function khmakecontact(username, hostname)
{
    var linktext = username + "@" + hostname; 
    document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + linktext + "</a>")
}
