

var ns4 = (document.layers);
var ie4 = (document.all && !document.getElementById);
var ie5 = (document.all && document.getElementById);
var ns6 = (!document.all && document.getElementById);

id = "";
ro = "";
oldId = "";
oldRo = "";
check = "";

function rollOver(idNr){
	id = "subnavi"+idNr+"box";
	ro = "hauptnavi"+idNr; 
	if(ns4 && check != id){
		//alert("1");
		 document.layers[ro].style.backgroundImage = "url(fileadmin/vorlagen/img/hauptnavibg_ro.gif)";
		document.layers[id].style.visibility = "show";
		if(oldId != "")document.layers[oldId].style.visibility = "hide";
		if(oldRo != "")document.layers[oldRo].style.backgroundImage = "url(fileadmin/vorlagen/img/hauptnavibg_no.gif)";
		check = id;
	}
	else if(ie4 && check != id){
		//alert("2");
		document.all[ro].style.backgroundImage = "url(fileadmin/vorlagen/img/hauptnavibg_ro.gif)";
		document.all[id].style.visibility = "visible";
		if(oldId != "")document.all[oldId].style.visibility = "hidden";
		if(oldRo != "")document.all[oldRo].style.backgroundImage = "url(fileadmin/vorlagen/img/hauptnavibg_no.gif)";
		check = id;
	}
	else if(ie5 && check != id || ns6 && check != id){
		document.getElementById(ro).style.backgroundImage = "url(fileadmin/vorlagen/img/hauptnavibg_ro.gif)";
		document.getElementById(id).style.visibility = "visible";
		if(oldId != "")document.getElementById(oldId).style.visibility = "hidden";	
		if(oldRo != "")document.getElementById(oldRo).style.backgroundImage = "url(fileadmin/vorlagen/img/hauptnavibg_no.gif)";
		check = id;
	}
	oldId = id;
	oldRo = ro;
}

function bankdrucken()
{
	var drucken = window.open("/typo3conf/ext/spendenformular/pi1/bankdrucken.html", "","width=280,height=320,top=300");
	/*http://amani.i-gelb.de/typo3conf/ext/spendenformular/pi1/bankdrucken.html*/
}
