/*
** Maskierte e-mail
*/
function mask(n,d,txt) {
	if(txt == ''){ txt = n+"@"+d; }
	var string = "<a href='"+"ma"+"ilt"+"o:"+n+"@"+d+"'>"+txt+"</a>";
	document.write(string);
}

function kontakt() {
	window.open("../static/kontaktformular.php", "KONTAKTFORM", "width=450,height=550,scrollbars");
	}