function writeScroll() { document.write('
'); } // resize automatique window.onresize = reloadScroller; // création du scroller var myScroller = new Scroller(0, 0, 207, 100, 0, 4, "center"); myScroller.setColors("#000000", "#EAEBEC", "#D8D8D8"); // ajout des informations myScroller.addItem('

RYANAIR ON LINE CHECK-IN

'); function startScroll() { var InfoLayer; var lx, ly; // Locate placeholder layer so we can use it to position the scrollers. InfoLayer = getLayer("bandeau"); lx = getPageLeft(InfoLayer); ly = getPageTop(InfoLayer); // décalages MAC if (isIE && isMac) { x += 10; y += 15; } else if (isSF) { x += 8; y += 8; } // alert(lx + ', ' + ly); // Create the first scroller and position it. myScroller.create(); myScroller.hide(); myScroller.moveTo(lx, ly); myScroller.setzIndex(100); myScroller.show(); } function reloadScroller() { // Locate new placeholder layer so we can use it to position the scrollers. var InfoLayer = getLayer("bandeau"); var lx = getPageLeft(InfoLayer); var ly = getPageTop(InfoLayer); // alert(lx + ', ' + ly); // décalages MAC if (isIE && isMac) { x += 10; y += 15; } else if (isSF) { x += 8; y += 8; } // Move the scroller myScroller.moveTo(lx, ly); }