Here is a very simple popup window maker.
This goes in the head of the document:
Code:
<script language="JavaScript" type="text/javascript">
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,location=1,statusbar=1,menubar=1,resizable=1,width=400,height=300');");
}
// End -->
</script>
You can set any of the variables to anything you like.
Your links should look like this:
Code:
<A HREF="javascript:popUp('url_you_want_to_open')">Open the Popup Window</A>
Bookmarks