ecms_float_upanddown.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. if (navigator.appName == "Netscape")
  2. document.ns = navigator.appName == "Netscape"
  3. window.screen.width>800 ? imgheight=160:imgheight=150
  4. window.screen.width>800 ? imgright=20:imgright=30
  5. function threenineload()
  6. {
  7. if (navigator.appName == "Netscape")
  8. {document.DGbanner3.pageY=pageYOffset+window.innerHeight-imgheight;
  9. document.DGbanner3.pageX=imgright;
  10. threeninemove();
  11. }
  12. else
  13. {
  14. DGbanner3.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
  15. DGbanner3.style.right=imgright;
  16. threeninemove();
  17. }
  18. }
  19. function threeninemove()
  20. {
  21. if(document.ns)
  22. {
  23. document.DGbanner3.top=pageYOffset+window.innerHeight-imgheight
  24. document.DGbanner3.right=imgright;
  25. setTimeout("threeninemove();",80)
  26. }
  27. else
  28. {
  29. DGbanner3.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
  30. DGbanner3.style.right=imgright;
  31. setTimeout("threeninemove();",80)
  32. }
  33. }
  34. function MM_reloadPage(init) { //reloads the window if Nav4 resized
  35. if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
  36. document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  37. else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
  38. }
  39. MM_reloadPage(true)
  40. threenineload()