function schicken(adr, dom) {
	arr_dom=dom.split(".");
	domstr=arr_dom[0];
	for (i=1; arr_dom[i]!=null; i++) {
		domstr=domstr+"."+arr_dom[i];
	}
	document.write("<a href=\"click to send\" onClick=\"ersetz(this, \'"+adr+"\', \'"+dom+"\')\">"+adr+"@"+domstr+"</a>")
}
function ersetz(ref, adr, dom) {
	ref.href="mailto:"+adr+"@"+dom;
}


