function btnFarbeWechseln(id){
	document.getElementById(id).style.backgroundColor="#BFD1E8";
}

function rahmenZeigen(id){
	document.getElementById(id).style.borderLeftColor="#0066CC";
	document.getElementById(id).style.borderRightColor="#0066CC";
}

function rahmenEntfernen(id){
	document.getElementById(id).style.borderLeftColor="white";
	document.getElementById(id).style.borderRightColor="white";
}

