'); function initialisierung () { var body = document.body, html = document.documentElement; var height = Math.max (body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight); document.images[1].height = height - 200; bildwechsel (0); } function bildwechsel (weiter) { document.getElementById("beschreibung").firstChild.nodeValue = wanderung; aktbild = aktbild + weiter if (aktbild>anzbild) aktbild=1; if (aktbild==0) aktbild=anzbild; if (bild[aktbild].substr (15, 1)=='h') { // document.images[1].width = 450; // document.images[1].height = 600; } else { // document.images[1].width = 650; // document.images[1].height = 488; } document.images[1].src = '../' + pfad + '/' + bild[aktbild].substr (0, 15); document.getElementById("bildnr").firstChild.nodeValue = aktbild; document.getElementById("bildname").firstChild.nodeValue = bild[aktbild].substr (0, bild[aktbild].indexOf(' ')); document.getElementById("bildtext").firstChild.nodeValue = bild[aktbild].substr (17, 200); } function navigation(evt) { var tastencode = (window.event)?event.keyCode:evt.which; if (tastencode==37) bildwechsel (-1); if (tastencode==39) bildwechsel (+1); } document.onkeydown=navigation; //-->
 
|