// JavaScript Document
	// Dynamic Iframe loader
	function loadIframe(theURL) {
		document.getElementById("BFrame").src=theURL;
	}
	
	// resizes Iframe according to content
	function resizeMe(obj){ 
		docHeight = BFrame.document.height || BFrame.document.body.scrollHeight 
		obj.style.height = docHeight + 'px'
	}
	
function Bildwechsel(Bildnr, Bildobjekt){
if(activ != Bildnr){
window.document.images[Bildnr].src = Bildobjekt.src;
}
}

function Factiv(Anr, ZIEL){
activ = Anr;
if(Anr != 2){
window.document.images[2].src = Pic2.src;
}
if(Anr != 3){
window.document.images[3].src = Pic3.src;
}
if(Anr != 4){
window.document.images[4].src = Pic4.src;
}
if(Anr != 5){
window.document.images[5].src = Pic5.src;
}
if(Anr != 6){
window.document.images[6].src = Pic6.src;
}
if(Anr == 2){
window.document.images[2].src = Pic2_1.src;
}
if(Anr == 3){
window.document.images[3].src = Pic3_1.src;
}
if(Anr == 4){
window.document.images[4].src = Pic4_1.src;
}
if(Anr == 5){
window.document.images[5].src = Pic5_1.src;
}
if(Anr == 6){
window.document.images[6].src = Pic6_1.src;
}


document.getElementById("BFrame").src = ZIEL;

	}
	function goto(myActiv, ZIEL){
		if(myActiv!=2){
		Factiv(myActiv, ZIEL);
		parent.LinkAktiv = 2;
		}
	}