var text1;
var text2;
var text3;
var text4;
var text5;

function emailscript(text1, text2, text3)
{
document.write('<a href="' + 'mailto:' + text1 + '@' + text2 + '.' + text3 + '">' + text1 + '@' + text2 + '.' + text3 + '</a>');
}
function emailscript5(text1, text2, text3, text4, text5)
{
document.write('<a href="' + 'mailto:' + text1 + '@' + text2 + '.' + text3 + '" title="'+ text5+'">'+ text4 + '</a>');
}
function emailscript4(text1, text2, text3, text4)
{
    emailscript5(text1, text2, text3,text4,"");
}
function emailscript3(text1, text2, text3)
{
    text4=text1 + '@' + text2 + '.' + text3;
    emailscript5(text1, text2, text3,text4,"");
}
function FensterOeffnen (Adresse, titel, br, hh) {
      stri="width="+br+",height="+hh+",left=100,top=200";
      //alert(stri);
       Fenster1 = window.open(Adresse, titel, stri);
       Fenster1.focus();
}

