function Schreiben01(text1, text2, text3)
{
Mailstring = text1  + '@' + text2 + '.' + text3;
document.write('<a href="' + 'mailto:' + Mailstring + '">')
document.write( Mailstring + '</a>');
}

function swap(targetID, textID)
{
obj1 = document.getElementById(targetID);
obj1.style.display = (obj1.style.display == 'none') ? 'block' : 'none';

if (document.all[textID].innerText == "mehr >>") {
   document.all[textID].innerText = "<< weniger";
} else {
  document.all[textID].innerText = "mehr >>";
}

}


function checkJavaScriptValidity()
{
    document.getElementById("jsEnabled").style.visibility = 'visible';
    document.getElementById("jsDisabled").style.visibility = 'hidden';
}

