Give this a try (in your head tag...you can change the width and height numbers, etc)P
Code:
<script language="JavaScript">
<!--
function popupWindow(url) { window.open(url,'popup','width=395,height=330,menubar=no,scrollbars=yes,toolbar=no,location=no,directories=no,resizable=no,top=50,left=50'); }
//-->
</script>
Then, this wherever you would like the link to active the window appear
Code:
<a href="" onClick="popupWindow('page.html'); return false;" onMouseOver="window.status='Click to Launch Popup!'; return true;" onMouseOut="window.status='';">
Click to Launch Popup!</a>
Hope that helps.
Bookmarks