Ciao...ho fatto passo passo quello che mi hai consigliato...
Ti spiego quello che avviene..

1- apro la pagina html e non appare niente
2- sono andato nei file temporanei e il sistema ha creato un cookie del genere (dove il valore è impostato direttamente a 2)...
te lo copio e incollo...
---------------
COOKIE
---------------
popupLyr
2
~~local~~/
0
3963222144
29607486
3256408640
29607285
*
-----------------
il codice finale che sto usando dopo i tuoi consigli è questo...
-----------------
HTML
-----------------
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
#intersticial {
position: absolute;
width: 300px;
height: 250px;
top: 50%;
left: 50%;
margin-left: -150px;
margin-top: -125px;
}
</style>
<script language="javascript" type="text/javascript">
function leggiCk(nome) {
var nameEQ = nome + '=';
var ca = document.cookie.split(';');
for(var i=0;i<ca.length;i++) {
var c=ca[i];
while(c.charAt(0)==' ') c=c.substring(1,c.length);
if(c.indexOf(nameEQ)==0) return c.substring(nameEQ.length,c.length);
}
return null;
}

function scriviCk(nome,valore) {
var date=new Date();
date.setTime(date.getTime()+86400000); // 24*60*60*1000 = 86400000 millisec.
document.cookie=nome+'='+valore+';expires='+date.t oGMTString()+'; path=/';
}

function hideit(){
document.getElementById("intersticial").style.visi bility="hidden";
}

var volte=leggiCk('popupLyr')
var num=(volte!=null)?parseInt(volte):1;

if(num<=2){
num++
var lCode='<div id="intersticial" style="position:absolute; width:72px; height:19px; z-index:1; left: 50%; top: 50%; margin-left: -150px; margin-top: -125px; visibility: none"><object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" width="300" height="250"><param name=movie value="300x250_sx1.swf"><param name=quality value=high>';
lCode+='<embed src="300x250_sx1.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="300" height="250"></embed>';
lCode+='</object></div>';
document.write(lCode)
scriviCk('popupLyr',num)
window.onload=function() {
setTimeout('hideit()',7000);
}
}
</script>
</head>

<body bgcolor="#000000">

</body>
</html>
---------------------
Grazie di tutto, ma sopratutto della vostra pazienza....
Ema