Hi,
YOu can do what you wanted to do by using TonyU's code and in the popup window add the following js code:
In the Head section
<script>
var howLong = 5500;
t = null;
function closeMe(){
t = setTimeout("self.close()",howLong);
}
</script>
In the body tag have this code:
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="closeMe();self.focus()" onUnload="opener.location='yourpageyouwanttorefreshto.asp'";>
This works quite nicely and avoids users going click crazy.
M "There are 3 kinds of people; those that can count and those that can't"