home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 January / Chip_2004-01_cd1.bin / tema / pjsoft / js / main.js
Text File  |  2003-04-03  |  2KB  |  83 lines

  1. var basicHeight = 0;
  2. var minimalHeight = 549;
  3. var minimalWidth = 770;
  4.  
  5. var pageBorders = 121;
  6.  
  7.  
  8. function mergeWidth() {
  9.     // minimalHeight = document.getElementById('main').offsetHeight + pageBorders;
  10.     if (bottomBar == 0) bottomBar = document.getElementById("bottomBar");
  11.  
  12.     if (document.body.clientHeight > minimalHeight) {
  13.         document.getElementById('myBody').style.height = document.body.clientHeight + "px";
  14.         document.getElementById('main').style.height = (document.body.clientHeight - pageBorders) + "px";
  15.     } else {
  16.         document.getElementById('myBody').style.height = minimalHeight + "px";
  17.         document.getElementById('main').style.height = (minimalHeight - pageBorders) + "px";
  18.     }
  19.     if (document.body.clientWidth < minimalWidth) {
  20.         document.getElementById("myBody").style.width = minimalWidth + "px";
  21.         if (bottomBar) {
  22.             document.getElementById("bottomBar").style.width = minimalWidth + "px";
  23.         }
  24.     } else {
  25.         document.getElementById("myBody").style.width = "100%";
  26.         if (bottomBar) {
  27.             document.getElementById("bottomBar").style.width = "100%";
  28.         }
  29.     }
  30. }
  31.  
  32. var bottomBar = 0;
  33. var lastPosition = 0;
  34. var set = 0;
  35.  
  36. function floatBottomBar() {
  37.     set = 0;
  38.     if (bottomBar == 0) {
  39.         bottomBar = document.getElementById("bottomBar");
  40.     }
  41.     var newPos = document.body.clientHeight-24+document.body.scrollTop;
  42.     if (bottomBar) {
  43.         if (lastPosition != newPos) {
  44.             bottomBar.style.top=newPos+"px";
  45.             lastPosition = bottomBar.style.top;
  46.         }
  47.  
  48.     } else {
  49.         return;
  50.     }
  51.     if (!document.all) {
  52.         if (set==0) {
  53.             setTimeout("floatBottomBar()", 1);
  54.             set=1;
  55.         }
  56.     }
  57. }
  58.  
  59. var activeBar = "none";
  60.  
  61. function changeLinkBar(barname) {
  62.     document.getElementById("linkbarWrapper").style.display = "block";
  63.     if (activeBar != "none" ) {
  64.         document.getElementById(activeBar).style.display = "none";
  65.     }
  66.     activeBar = barname;
  67.     document.getElementById(activeBar).style.display = "block";
  68. }
  69.  
  70.  
  71. function hl(chooseWrapper) {
  72.     if (document.all) {
  73.         chooseWrapper.style.backgroundImage="url(img/li_b.gif)";
  74.         chooseWrapper.style.cursor="hand";
  75.     }
  76. }
  77. function dl(chooseWrapper) {
  78.     if (document.all) {
  79.         chooseWrapper.style.backgroundImage="url(img/li_a.gif)";
  80.         chooseWrapper.style.cursor="auto";
  81.     }
  82. }
  83.