// list functions     //                                         

function invertRow (elmt) {
	e = document.getElementById("r"+elmt);
	e.style.backgroundColor = "#333332";
	e.style.color = "#FFFFFF";
	a = document.getElementById("a"+elmt);
	a.style.color='#FFFFFF';
}

function normalizeRow(elmt) {
	e = document.getElementById("r"+elmt);
	e.style.backgroundColor = "#FFFFFF";
	e.style.color = "#000000";
	a = document.getElementById("a"+elmt);
	a.style.color='#000000';}

function invertRowAktiv (elmt) {
	e = document.getElementById("r"+elmt);
	e.style.backgroundColor = "#333332";
	e.style.color = "#FFFFFF";
	a = document.getElementById("a"+elmt);
	a.style.color='#FFFFFF';
}

function normalizeRowAktiv (elmt) {
	e = document.getElementById("r"+elmt);
	e.style.backgroundColor = "#000000";
	e.style.color = "#FFFFFF";
	a = document.getElementById("a"+elmt);
	a.style.color='#FFFFFF';
}

function invertRowList (elmt) {
	eA = document.getElementById("r"+elmt+'A');
	eB = document.getElementById("r"+elmt+'B');
	eBa = document.getElementById("a"+elmt+'B');
	eC = document.getElementById("r"+elmt+'C');
	eD = document.getElementById("r"+elmt+'D');
	eA.style.backgroundColor = eB.style.backgroundColor = eC.style.backgroundColor = eD.style.backgroundColor ="#333332";
	eA.style.color = eB.style.color = eBa.style.color = eC.style.color = eD.style.color = "#FFFFFF";
}

function normalizeRowList (elmt) {
	eA = document.getElementById("r"+elmt+'A');
	eB = document.getElementById("r"+elmt+'B');
	eBa = document.getElementById("a"+elmt+'B');
	eC = document.getElementById("r"+elmt+'C');
	eD = document.getElementById("r"+elmt+'D');
	eA.style.backgroundColor = eB.style.backgroundColor = eC.style.backgroundColor = eD.style.backgroundColor ="#FFFFFF";
	eA.style.color = eB.style.color = eBa.style.color = eC.style.color = eD.style.color ="#000000";
}




// roll over funktion //          

function movein(which,html){
if (document.getElementById)
document.getElementById("boxdescription").innerHTML=html
else
boxdescription.innerHTML=html
}

function moveout(which){
if (document.getElementById)
document.getElementById("boxdescription").innerHTML='&nbsp;'
else
boxdescription.innerHTML='&nbsp;'
}

function movein2(which,html){
if (document.getElementById)
document.getElementById("boxdescription2").innerHTML=html
else
boxdescription2.innerHTML=html
}

function moveout2(which){
if (document.getElementById)
document.getElementById("boxdescription2").innerHTML='&nbsp;'
else
boxdescription.innerHTML='&nbsp;'
}

function movein3(which,html){
if (document.getElementById)
document.getElementById("boxdescription3").innerHTML=html
else
boxdescription3.innerHTML=html
}



// layer ein aus                    
//   

function content(szDivID, iState) // 1 visible, 0 hidden
{
    if(document.layers)    //NN4+
    {
       document.layers[szDivID].visibility = iState ? "show" : "hide";
    }
    else if(document.getElementById)      //gecko(NN6) + IE 5+
    {
        var obj = document.getElementById(szDivID);
        obj.style.visibility = iState ? "visible" : "hidden";
    }
    else if(document.all)       // IE 4
    {
        document.all[szDivID].style.visibility = iState ? "visible" : "hidden";
    }
}






