﻿// JScript File

function hideRest(cName){
	myBody = document.getElementsByTagName("body").item(0);
	myBody.setAttribute("class","jsshown");
	myBody.setAttribute("className","jsshown");
	for(var i = 0; i < document.getElementsByTagName("span").length; i++){
		var Knoten = document.getElementsByTagName("span");
		if (Knoten[i].getAttribute("className")==cName || Knoten[i].getAttribute("class")==cName){
			Knoten[i].setAttribute("class","jshidden");
			Knoten[i].setAttribute("className","jshidden");
		}
	}
}

function showAll(cName){
	myBody = document.getElementsByTagName("body").item(0);
	myBody.setAttribute("class","defaultBody");
	myBody.setAttribute("className","defaultBody");
	for(var i = 0; i < document.getElementsByTagName("span").length; i++){
		var Knoten = document.getElementsByTagName("span");
		if (Knoten[i].getAttribute("className")=="jshidden" || Knoten[i].getAttribute("class")=="jshidden"){
			Knoten[i].setAttribute("class",cName);
			Knoten[i].setAttribute("className",cName);
		}
	}
}

