function show(el) 
{document.getElementById(el).style.display = "block";}
	
function hide(el) 
{document.getElementById(el).style.display = "none";}

function hideAll()
{
hide('content_beispiele');
hide('Illustration1');
hide('Illustration2');
hide('Illustration3');
hide('Illustration4');
hide('Illustration5');
hide('Kinderbuch1');
hide('Kinderbuch2');
hide('Kinderbuch3');
hide('Kinderbuch4');
hide('LuftundLiebe1');
hide('LuftundLiebe2');
hide('LuftundLiebe3');
hide('LuftundLiebe4');
}

function hideAll_Presse()
{
hide('content_presse');
hide('artikel1');
hide('artikel1_1');
hide('artikel2');
hide('artikel3');
hide('artikel4');
hide('artikel5');
hide('artikel6');
hide('artikel7');
hide('artikel8');
hide('artikel9');
hide('artikel9_1');
hide('artikel9_2');
hide('artikel10');
hide('artikel11');
hide('artikel12');
hide('artikel13');
hide('artikel13_1');
hide('artikel13_2');

hide('artikel14');
hide('artikel15');
hide('artikel15_1');
hide('artikel15_2');

hide('artikel16');
hide('artikel17');
hide('artikel18');
hide('artikel19');


}

function hidescrollbars()
{
document.body.style.overflow='hidden';
}

function unhidescrollbars()
{document.body.style.overflow='auto';
}

function hidescrollbars_Presse()
{this.Ydisp=window.pageYOffset; 
this.Xdisp=window.pageXOffset;
document.body.style.overflow='hidden';
this.hideScrollbars = true;}

function unhidescrollbars_Presse()
{window.scrollTo(Xdisp, Ydisp);

document.body.style.overflow='scroll';}

function fenster(winname,wintitel,breite,hoehe) {
	var links=screen.width/2-breite/2;
	var oben=screen.height/2-hoehe/2;
	NewWin = window.open(winname, wintitel, "width="+breite+",height="+hoehe+",top="+oben+",left="+links+",scrollbars=1,toolbar=0,location=0");
}

function openNewWindow(url,name,features) {
newWindow=window.open(url,name,features);
newWindow.focus();
}


function gastbuch(winname,wintitel,breite,hoehe) {
	var links=screen.width/5-breite/2;
	var oben=screen.height/2-hoehe/2;
	NewWin = window.open(winname, wintitel, "width="+breite+",height="+hoehe+",top="+oben+",left="+links+",scrollbars=0,toolbar=0,location=0");
}

