// JAVASCRIPT FACIL  ··· http://www.javascriptfacil.com
function movstar3(c,time){
movx=setInterval("mov3("+c+")",time)
}
function movover3(){
clearInterval(movx)
}
function mov3(c){
scrollx=box1_scroll.document.body.scrollLeft
scrolly=box1_scroll.document.body.scrollTop
scrolly=scrolly+c
box1_scroll.window.scroll(scrollx,scrolly)
}
function o_down3(theobject){
object=theobject
while(object.filters.alpha.opacity>60){
object.filters.alpha.opacity+=-10}
}
function o_up3(theobject){
object=theobject
while(object.filters.alpha.opacity<100){
object.filters.alpha.opacity+=10}
}
function wback3(){
if(box1_scroll.history.length==0){window.history.back()}
else{box1_scroll.history.back()}
}