
// Reverse email address, with nonsense every other character
// Starting and ending with a nonsense character
// '@' must be replaced with '_'


// shh = 'amboccd.eefdgihai-jskslemcnoorppq_rnsottuhvgwuxaynzcamb.cedceufrgbh'
shh = 'amboccd.oesdtiuacesgpnhafhkcz_jtlrmoepdpfubsh'

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()

