function saynotoie6_hide() {
    var el = document.getElementById('saynotoie6');
    if (el) {
        var value = el.style.marginTop;
        value = value ? parseInt(value) : 0;
        el.style.marginTop = value - 1 + 'px';
        if (parseInt(el.style.marginTop) > -80){
            var time = 1.4 * 80 / Math.abs(value) * 3.7;
            setTimeout(saynotoie6_hide, time);
        }
    }
}
