#layer {
background: #FFF;
border: 1px solid #555;
bottom: 0;
box-shadow: 0 0 10px #000;
color: #AAA;
display: none;
left: 0;
margin: auto;
padding: 20px;
position: fixed;
right: 0;
text-align: center;
top: 0;
z-index: 10;
}
<div id="layer">Я - скрытый слой!</div>
function cookie(a, b) {
if(b) document.cookie = a+'='+escape(b)+'; expires = Mon, 01-Jan-2999 00:00:00 GMT; path=/';
var c = '(?:; )?'+a+'=([^;]*);?', d = new RegExp(c);
return d.test(document.cookie) ? decodeURIComponent(RegExp['$1']) : 0;
}
window.onload = function() {
if(!cookie('layer')) setTimeout(function() {
document.getElementById('layer').style.display = 'block';
cookie('layer', true);
}, 5000); //Появится через 5 сек.
}