coded = "244qpF<GF>1.H4<1.4gX"
key = "7emY@n0AWt98ryUlv<bc34GZp1LdMRfDxoP2sNkju5zwVJCgIKiEO>T6FhHSXQaqB"
shift=coded.length
plain=""
for (i=0; i<coded.length; i++){
    if (key.indexOf(coded.charAt(i))==-1){
        ltr=coded.charAt(i)
        plain+=(ltr)
    } else {
        ltr = (key.indexOf(coded.charAt(i))-shift+key.length) % key.length
        plain+=(key.charAt(ltr))
    }
}
document.write("<a href='mailto:"+plain+"'>"+plain+"</a>")

