//
// ==================================================================
// ==================================================================
// functions for vfb homepage
// ==================================================================
// ==================================================================
//


// ==================================================================
// function toggleVisibility
// ------------------------------------------------------------------
// toggles visibility of the two rendered div-layers
// ==================================================================
// 
function toggleDivVisibility (idDiv)  {


	divVisibility = document.getElementById(idDiv).style.display
	
	
	if (divVisibility == "none") {
		document.getElementById(idDiv).style.display = "inline";
	}	
	else {
		document.getElementById(idDiv).style.display = "none"
	}

}

