Mischien komt het dom over, maar m'n javascript ervaring bestaat hoofdzakelijk uit copy/paste, maar mischien kan je een combinatie van deze scripts maken.
De eerste geeft een message na een ingestelde tijd, en de tweede opent een pop-up window, dmv een link.
Als je de message nu vervangt door de link(step two) en de timeout op nul zet.
<SCRIPT LANGUAGE="JavaScript">
<!--
setTimeout("alert(\"Zet hier je tekst
neer!\")", 5000);
// -->
</SCRIPT>
<!-- TWO STEPS TO INSTALL POPUP WINDOW:
1. Paste the first into the HEAD of your HTML document
2. Use the code to open the popup page on your site -->
<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp() {
props=window.open('icq_panel.html', 'poppage', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=400, height=300, left = 200, top = 150');
}
// End -->
</script>
<!-- STEP TWO: Use the following link to open the new window -->
<A HREF="javascript:popUp()">Open the Popup Window</A>