
// Reverse email address, with nonsense every other character
// Starting and ending with a nonsense character
// '@' must be replaced with '_'

//shh = 'akbuc.doecf.gtheinjskfl.montolpaqsrhsttiufvfwixrygz_aebucsd'

shh = 'agbrcod.erfigohhicjrkelbmmnaohpcqermsathutv_woxfynzia'


function contact_email() {
    var not_shh = ''
    for (var i=shh.length; i>=0; i-=2) {
        var c = shh.charAt(i)
        if (c == '_') {
            c = '@'
        }
        not_shh += c
    }
    document.write('<a href="mailto:' + not_shh + '">' + not_shh + '</a>')
}

contact_email()

