Sorry for the delay. To make the cookie feature persistent, change the script I posted above to:
Code:
<script type="text/javascript">
var isloaded=0
window.onload=function(){
if (document.cookie.indexOf("isloaded")==-1){
document.getElementById("showimage").style.display="block"
var expireDate = new Date()
expireDate.setDate(expireDate.getDate()+100)
document.cookie = "isloaded=1; path=/;expires=" + expireDate.toGMTString()
document.cookie="isloaded=1"
}
}
</script>
This will cause the pop up to only do so once 100 days, which should be long enough in most cases.
Bookmarks