function writeEmail (b,a,c) {
    full = a + '@' + b + '.' + c
    document.write('<a href="mailto:'+ full + '">'+ full +'</a>');
}

