function akt_bildwechsel(bild_id,bild,alt_text,bild_quelle,n_breite,n_hoehe){
	if(window.document.getElementById(bild_id)){
		window.document.getElementById(bild_id).src=bild;
		window.document.getElementById(bild_id).alt=alt_text;
		if(n_breite)
		{
			window.document.getElementById(bild_id).width=n_breite;
		}
		if(n_hoehe)
			window.document.getElementById(bild_id).height=n_hoehe;
		
		if(window.document.getElementById(bild_id+'_quelle') && bild_quelle)
			window.document.getElementById(bild_id+'_quelle').innerHTML='&copy; '+bild_quelle;
	}
}