function stick() {setTimeout("position()",100); }wannabepos=1;actypos=1;function position() {if (document.all){ wannabepos=document.body.scrollTop+1; }else { wannabepos=window.pageYOffset+1; }if (wannabepos<10 ) { wannabepos=1; }setTimeout("position()",10);action(); }function action() {actypos=actypos+(wannabepos-actypos)/20;if (document.all) {xwidth=document.body.scrollWidth;document.all.stick.style.top=actypos;document.all.stick.style.left=((xwidth-15)/2)-415; }else if (document.getElementById){xwidth=window.innerWidth;document.getElementById("stick").style.top=actypos;document.getElementById("stick").style.left=((xwidth-15)/2)-420; }else if (document.captureEvents && !document.getElementById){xwidth=window.innerWidth;document.layers.stick.top=actypos;document.layers.stick.left=((xwidth-15)/2)-420; }}
