function fillContactData(elemID) {
	var x = new String();
	x = '<strong>mobil: </strong>xy xz<br/> <strong>eMail: </strong><a href="ijkl:abc@def.gh">abc@def.gh</a>';
	x = x.replace("xy", "0179");
	x = x.replace("xz", "9459670");
	x = x.replace("abc", "kontakt");
	x = x.replace("abc", "kontakt");
	x = x.replace("def", "dogtors");
	x = x.replace("def", "dogtors");
	x = x.replace("gh", "de");
	x = x.replace("gh", "de");
	x = x.replace("ij", "mai");
	x = x.replace("kl", "lto");
	document.getElementById(elemID).innerHTML = x;
}
