function lowerMenuMouseOver(id) {
	obj = document.getElementById(id);
	if (obj.style.fontWeight == "bold") {
		obj.style.fontWeight = "";
		//obj.style.color = "";
	} else {
		obj.style.fontWeight = "bold";
		//obj.style.color = "#FF6633";
	}
	
	//alert(document.getElementById(id).style.fontWeight);
}

function JSclearMailAddress(id) {
	if (document.getElementById(id).value == "IhreEmailAdresse@domain.com") {
		document.getElementById(id).value="";
	}
}

