function NoSpam(account,domain) {
    document.location.href = "mailto:" + account + "@" + domain;
}
function ShowHideUtils(id, status) {
    switch(status) {
        case 'on':
            document.getElementById(id).style.display = '';
            break;
        case 'off':
            document.getElementById(id).style.display = 'none';
            break;
    }
}
