var scrollcliptop = 0; var scrollclipbottom = 150; var scrollspeed = 2; var outid = ""; var overid = ""; function Slide(){ if (slide <= 200){ if (navigator.appName == "Netscape"){ slide = slide + 1.5; document.hdrterms.clip.right = slide;} if ((navigator.appName.substring(0,9) == "Microsoft")){ slide = slide + 1; document.all.hdrterms.style.clip = "rect(0px "+slide+"px 36px 0px)";} slider = window.setTimeout('Slide()', 10); } else{ window.clearTimeout(slider); return;} } function scrollSpeed(num){ if (num == 1){ if (navigator.appName == "Netscape"){ scrollspeed = 5; } else{ scrollspeed = 5; } } if (num == 2){ if (navigator.appName == "Netscape"){ scrollspeed = 10; } else{ scrollspeed = 10; } } } function scrollDown(){ if (scroll >= -200){ if (navigator.appName == "Netscape"){ scroll = scroll - scrollspeed; scrollcliptop = scrollcliptop + scrollspeed; scrollclipbottom = scrollclipbottom + scrollspeed; document.textarea.clip.top = scrollcliptop; document.textarea.clip.bottom = scrollclipbottom; eval("document."+ all +"textarea"+ style +".top = scroll;"); } if ((navigator.appName.substring(0,9) == "Microsoft")){ scroll = scroll - scrollspeed; scrollcliptop = scrollcliptop + scrollspeed; scrollclipbottom = scrollclipbottom + scrollspeed; document.all.textarea.style.clip = "rect("+scrollcliptop+"px 546px "+scrollclipbottom+"px 0px)"; eval("document."+ all +"textarea"+ style +".top = scroll;"); } outid = window.setTimeout('scrollDown()', 10); } } function scrollUp(){ if (scroll < 150){ if (navigator.appName == "Netscape"){ scroll = scroll + scrollspeed; scrollcliptop = scrollcliptop - scrollspeed; scrollclipbottom = scrollclipbottom - scrollspeed; document.textarea.clip.top = scrollcliptop; document.textarea.clip.bottom = scrollclipbottom; eval("document."+ all +"textarea"+ style +".top = scroll;");} if ((navigator.appName.substring(0,9) == "Microsoft")){ scroll = scroll + scrollspeed; scrollcliptop = scrollcliptop - scrollspeed; scrollclipbottom = scrollclipbottom - scrollspeed; document.all.textarea.style.clip = "rect("+scrollcliptop+"px 546px "+scrollclipbottom+"px 0px)"; eval("document."+ all +"textarea"+ style +".top = scroll;");} overid = window.setTimeout('scrollUp()', 10); } } function scrolla(quanto){ if (navigator.appName == "Netscape"){ scroll = scroll - quanto; scrollcliptop = scrollcliptop + quanto; scrollclipbottom = scrollclipbottom + quanto; document.textarea.clip.top = scrollcliptop; document.textarea.clip.bottom = scrollclipbottom; eval("document."+ all +"textarea"+ style +".top = scroll;");} if ((navigator.appName.substring(0,9) == "Microsoft")){ scroll = scroll - quanto; scrollcliptop = scrollcliptop + quanto; scrollclipbottom = scrollclipbottom + quanto; document.all.textarea.style.clip = "rect("+scrollcliptop+"px 287px "+scrollclipbottom+"px 0px)"; eval("document."+ all +"textarea"+ style +".top = scroll;");} } //-->