Artur_Hopf,
var id = 0;
function box_click() {
clearTimeout(id);
var node = document.getElementById("box");
if (window.getComputedStyle(node).getPropertyValue('display') == 'none') {
node.style.display = 'inline';
id = setTimeout(function() {
node.style.display = 'none';
}, 8000);
} else {
node.style.display = 'none';
};
}