Help: Splash Screen that uses cookies

this is what i want you all to help me with.

most of us have visit forbes website we see the splash screen while later redirect to the allocated url of that distinguished post…

now i want something like that. but i dont want it to redirect. i want it to dismiss if the person does not click the text " continue to site" for 9 sec. and after that it wont show again except the person clear his or her browsing history and cookies.

a friend of mine gave me this code which i implemented on my header.php via wordpress.

`

` which i implemented. happily enough the code works. but my problem is that it shows every time which is very annoying to users
<div id='desktopad'><script type='text/javascript'> function hideshow(which){
if (!document.getElementById)
return
if (which.style.display=="none")
which.style.display="block"
else
which.style.display="none"
}
</script><script type='text/javascript'>
function hideshowtwo(which){
if (!document.getElementById)
return
if (which.style.overflow=="visible")
which.style.overflow="hidden"
else
which.style.overflow="visible"
}
</script><div class='main section' id='maintwo'>
<div class='widget HTML' id='HTML12'>
<div class='mysitead' id='mysitead' style='color:#eee; text-align: center; top: 0; bottom: 0; left: 0; right: 0; width: 100%; position: fixed; background: #191e22; z-index: 1000;'>
<p>
welcome
</p>
<h2></h2>
<br>
<p class='more'></p><a class='close' href='javascript:hideshow(document.getElementById(&#39;mysitead&#39;));' style='font-size: 14px; cursor: pointer; text-decoration: none; color: #eee;'><b>CLICK HERE TO CONTINUE TO WEBSITE</b></a></div>
</div></div>
</div>

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.