
function preload() {
	if (document.images){
        for (i=0;i<bilder.length;i++){
	        eval(bilder[i]+"_off=new Image;"+bilder[i]+"_off.src='"+ordner+bilder[i]+"_off.gif'");
	        eval(bilder[i]+"_on=new Image;"+bilder[i]+"_on.src='"+ordner+bilder[i]+"_on.gif'");
        }
	}
}


function pic_wechsel(name,status){ // standard-mouseover
	if (document.images){
		document.images[name].src=ordner+name+status+".gif";
	}
}


function pic_wechsel2(name,status){ // mouseover bereiche BEITRAEGER & MITGLIEDER
	if (document.images){
		document.images[name].src=ordner2+name+status+".gif";
	}
}

function fenster_print(url,name,breit,hoch){
	oben = 10;
	links = (screen.availWidth - breit - 20);
	window.open(url, name, "width=" + breit + ",height=" + hoch + ",top=" + oben + ",left="  + links + ",toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes");
}





