// Ne plus afficher les erreurs javascriptfunction stopError() {return true;} window.onerror=stopError; //-->// http://www.nr1webresource.com/tutorials/slideshow.htm// Begin//Pre-Load the imagesvar image1 = new Image();image1.src = "../images/diaporama/annemyriam.jpg"; var image2 = new Image();image2.src = "../images/diaporama/annemyriam2.jpg";var imagecount = 2; // Slideshow code (no modifications necessary!) var pic = 1;var currentpic = 1; function slideshow() {if (document.images == "false")returndocument.slidepic.src = eval("image"+ pic +".src")currentpic = pic; if (pic < imagecount) {pic++} else {pic = 1} setTimeout("slideshow()",4000)} slideshow(); // Clickable add-on var s_clickable = "true"; if (s_clickable == "true") {function clickable() {if (currentpic == 1) {window.location.href = "link1.htm"} else if (currentpic == 2) {window.location.href = "link2.htm"} else if (currentpic == 3) {window.location.href = "link3.htm"}}} else {function clickunable() {s_clickable = window.location.href}} 