function toZeig(strID){
	var objTABLE = document.getElementById(strID);
	objTABLE.className = 'nichtwech';
}

function toNichtZeig(strID){
	var objTABLE = document.getElementById(strID);
	objTABLE.className = 'wech';
}
