
function printPage() {
	if (window.print) {
		jetztdrucken = confirm('Diese Seite drucken ?');
		if (jetztdrucken) window.print();
   }
}

function div_show() {
	document.getElementById ('info').style.display = 'block';
}
function div_hide() {
	document.getElementById ('info').style.display = 'none';
}



function vor() {
	bildIndex++;
	if (bildIndex >= bilder.length) {
		bildIndex = 0;
	}
	document.getElementById("bild").src = bilder[bildIndex];

}
function zurueck() {
	bildIndex--;
	if (bildIndex < 0) {
		bildIndex = bilder.length-1;
	}
	document.getElementById("bild").src = bilder[bildIndex];
}

