I thought he wanted a javascript pop-up... easy enough sear to do, google it if that's what you wanted! Oh hell, I have one in my cute html editor:
<!-- This script will open a new window with the dimensions given below. "correct.html" is the
target web page that will be loaded into the window -->
<script language="JavaScript">
<!--
Stuff=window.open("correct.html","Stuff", "toolbar=0,location=0,status=0,menubar=0,scrollbars=2,resizable=1,width=340,height=250") </script>
-->
</script>
<a href="#" onclick="self.close();">Close This Window</a>
And I threw in the close this window thingy too, HTH!