function eAusgabe(txt1, txt2, txt3)
{
    eStr = txt1  + '@' + txt2 + '.' + txt3;

    document.write('<a href="' + 'mailto:' + eStr + '">')
    document.write(eStr + '</a>');
}

