﻿slide_bottomLayer = document.getElementById('slidehelper');
    var slide_IntervalId = 0;
    var slide_maxHeight = 210;//Chieu cao khung quang cao
    var slide_minHeight = 0;
    var slide_curHeight = 0;
    function slide_show(){
        slide_curHeight += 2;
        if(slide_curHeight > slide_maxHeight){
            clearInterval(slide_IntervalId);
        }
        slide_bottomLayer.style.height = slide_curHeight+'px';
    }
    function slide_hide(){
        slide_curHeight -= 3;
        if(slide_curHeight < slide_minHeight){
            clearInterval(slide_IntervalId);
        }
        slide_bottomLayer.style.height=slide_curHeight+'px';
    }
    slide_IntervalId=setInterval('slide_show()',5);
    function slide_clickhide(){
        slide_IntervalId=setInterval('slide_hide()',5);
    }
    function slide_clickshow(){
        slide_IntervalId=setInterval('slide_show()',5);
    }
    function slide_clickclose(){
        document.body.style.marginBottom = '0px';
        slide_bottomLayer.style.display = 'none';
    }
