

var N4 = false; 
var IE = false; 
var W3C = false;
var init = false;

var prevStat = 'dmx';

BrName = navigator.appName;
BrNumb = navigator.appVersion.split(';');
BrPlat = navigator.platform;
BrInt = BrNumb[1].split(".");

if(document.layers) {
	N4=true;
	//writetext="";
}
if(document.all){
	IE=true;
}
if(document.getElementById){
	W3C=true;
}
if(IE && W3C && !document.getElementById("content")){
	W3C = false;
}



// - - FUNKTIONEN


// change the classes
function changeBox(cp,stCl){
	if(IE && document.all[cp]){
			document.all[cp].className = stCl;
	}
	if(W3C && document.getElementById(cp)){
			document.getElementById(cp).className = stCl;
		//alert(stCl[st] + "+" + cp);
	}
}