Christopher
It looks like you need a non-intrusive pop-up dialog, but for this, just overlay the main page and not appear in a separate browser window. "jQuery UI" has many built-in goodies like this one. A simple code example might look like this:
<script src="jquery.js" />
<script src="jquery-ui.js" />
<script type="text/javascript">
$(window).load(function () {
$("#overlay_box").dialog();
});
</script>
...
<div id="overlay_box">
</div>
For a demo of the above code, as well as more details, visit:
http://jqueryui.com/demos/dialog/
, .
-tjw