// mailformplus fokussieren des Cursors
function fokussieren () {
  if (window.document.Formular.vorname.value == "") { window.document.Formular.vorname.focus(); return false;} 
 if (window.document.Formular.nachname.value == "") { window.document.Formular.nachname.focus(); return false;} 
 if (window.document.Formular.tel.value == "") { window.document.Formular.tel.focus(); return false;} 
 if (window.document.Formular.email.value == "") { window.document.Formular.email.focus(); return false;} 
return true;
}


// Email-Verschlüsselung
function setMailLink(an,domain) {
	var An = an;
	var Dn = domain;

	var LinkText = An + "@" + Dn ;
  //document.open();
  document.write("<a href=\"mailto:" + LinkText + "\" class=internal-link>" + LinkText + "</a>");
  //document.close();
}