    B1 = document.getElementById('LeftBlock');
    B2 = document.getElementById('RightBlock');
    H1 = document.getElementById('hiddenLinks');
  function onLoad2(){
    if ((newHeight == "0px") || screenFlag){
      H1.style.display = "block";
      B1.style.width  = newWidth + "px";
      B2.style.width  = newWidth + "px";

    }
    else { 
     newWidthL = newWidthNo*0.450;
     newWidthR = newWidthNo - newWidthL-50;
     B1.style.width  = newWidthL + "px";
     B2.style.width  = newWidthR + "px";
    }
  }


