function mailto(dom,id) {

	if (document.getElementById) {
		document.location.href="mailto:" + id + "@" + dom;		
	} else {
		document.location.href="mailto:_loeschen_Sie_bitte_diesen_Text_" + id + "@" + dom;
	}

}