

	var An = "info";
	var Dn = "prunkfahne";
	var En = "de";
	var LinkText = "info" + String.fromCharCode(64) + "prunkfahne.de";

function fn_set_AdresPocztowy() {
 var aoFormInput = document.getElementsByName("recipient");
 if (aoFormInput.length) {
  aoFormInput[0].value = LinkText;
 }
}
 
function setMailLink() {
	document.open();
	document.write("<a href=\"mailto:" + LinkText + "\">" + LinkText + "</a>");
	document.close();
}

window.onload = fn_set_AdresPocztowy;
