﻿function SchreibeMailadresse(text1, text2, text3)
{

Mailstring = text1  + '@' + text2 + '.' + text3;

document.write('<a href="' + 'mailto:' + Mailstring + '">')
document.write( Mailstring + '</a>');
}

