// -> email functionsfunction decryptLink (target) {	var hyperlink = target.replace(/[a-zA-Z]/g,	function (code) {		return String.fromCharCode(		(code <= "Z" ? 90 : 122) >=		(code = code.charCodeAt(0) + 13) ?		code : code - 26); } )	return hyperlink;}function sendEmail (target,subject) {	location.href = "mailto:" + decryptLink(target) + "?subject=" + subject;}// -> end// -> imprintfunction launchImprint(lang) {	var w = 390;	var h = 500;	var URL = "imprint.php?lang=" + lang;	var l = 50;	var t = 50;	var windowprops = "location=no, scrollbars=yes, menubars=no, toolbars=no, resizable=yes" + ", left=" + l + ", top=" + t + ", width=" + w + ", height=" + h;	popup = window.open(URL, "imprint", windowprops);	popup.focus();}// -> end// -> imprintfunction launchPrintout(page) {	var w = 850;	var h = 500;	var URL = "printout.php?page=" + page;	var l = 50;	var t = 50;	var windowprops = "location=no, scrollbars=yes, menubars=no, toolbars=no, resizable=yes" + ", left=" + l + ", top=" + t + ", width=" + w + ", height=" + h;	popup = window.open(URL, "printout", windowprops);	popup.focus();}// -> end// -> form validationfunction validateForm(formName,lang) {	formName = formName.name;	if (		eval("document." + formName).SenderFirstname.value == "" ||		eval("document." + formName).SenderLastname.value == "" ||		eval("document." + formName).SenderEmail.value == "" ||		eval("document." + formName).SenderPhone.value == "" ||		eval("document." + formName).SenderStreet.value == "" ||		eval("document." + formName).SenderNumber.value == "" ||		eval("document." + formName).SenderAddress.value == "" ||		eval("document." + formName).SenderCountry.value == ""	) {		if (lang=="de") alert("Bitte alle Formular Felder ausf" + unescape("%FC") + "llen!");		if (lang=="en") alert("Please fill out all form fields!");		return false;	} return true;}// -> end