var fallSpeed = 10;
var fallTimer = 15;

function showHideMenu(id,d){
  var h = document.getElementById(id + '-ddheader');
  var c = document.getElementById(id + '-ddcontent');
  clearInterval(c.timer);
  if(d == 1){
    clearTimeout(h.timer);
    if(c.maxh && c.maxh <= c.offsetHeight){return}
    else if(!c.maxh){
      c.style.display = 'block';
      c.style.height = '382px';
      c.style.width = '144px';
      c.style.left = '-40px';
      c.maxh = c.offsetHeight;
      c.style.height = '0px';
    }
    c.timer = setInterval(function(){menuSlide(c,1)},fallTimer);
  }
  else if(d == 2){
    clearTimeout(h.timer);
    if(c.maxh && c.maxh <= c.offsetHeight){return}
    else if(!c.maxh){
      c.style.display = 'block';
      c.style.height = '382px';
      c.style.width = '144px';
      c.style.left = '106px';
      c.maxh = c.offsetHeight;
      c.style.height = '0px';
    }
    c.timer = setInterval(function(){menuSlide(c,1)},fallTimer);
  }else{
    h.timer = setTimeout(function(){menuCollapse(c)},50);
  }
}

function menuCollapse(c){
  c.timer = setInterval(function(){menuSlide(c,-1)},fallTimer);
}

function cancelHide(id){
  var h = document.getElementById(id + '-ddheader');
  var c = document.getElementById(id + '-ddcontent');
  clearTimeout(h.timer);
  clearInterval(c.timer);
  if(c.offsetHeight < c.maxh){
    c.timer = setInterval(function(){menuSlide(c,1)},fallTimer);
  }
}

function menuSlide(c,d){
  var currh = c.offsetHeight;
  var dist;
  if(d == 1){
    dist = (Math.round((c.maxh - currh) / fallSpeed));
  }else{
    dist = (Math.round(currh / fallSpeed));
  }
  if(dist <= 1 && d == 1){
    dist = 1;
  }
  c.style.height = currh + (dist * d) + 'px';
  //c.style.opacity = currh / c.maxh;
  //c.style.filter = 'alpha(opacity=' + (currh * 100 / c.maxh) + ')';
  
  c.style.opacity = 0.95;
  c.style.filter = 'alpha(opacity=95)';
  if((currh > (c.maxh - 2) && d == 1)){
    
    clearInterval(c.timer);
  }
  else if((currh < 10 && d != 1)){
    c.style.height="0px";
    clearInterval(c.timer);
  }
}

function PopUp(text) {
  var w=window.open('/pbank/owa/pbk00w01.DisplayHelpWindow?p_nSBId=620&p_sHelpId='+text,"_blank","width=300,height=400,screenX=0,screenY=0,left=0,top=0,scrollbars=1,resizable=1");
}