Create a web page with the ad/banner that you wanted and call it banner.htm or anything else. Now add the following script into your page
<script language="JavaScript1.2">
<!--
function popupwin() {
newWin = window.open('banner.htm','','resizable=no,scrollbars=auto,dependent=yes,width=250,height=50');
newWin.focus();
}
-->
</script>
Add the following event handler to your body tag
onload="popupwin()"
Use appropriate width and height values for your popup window to show the banner/add correctly.
[sig][/sig]