Pop-Up Window


Example:

LINK

To create a pop-up window, put the following code in the head of your document:
<SCRIPT LANGUAGE="JavaScript">
<!-- Idea by:  Nic Wolfe (Nic@TimelapseProductions.com) -->
<!-- Web URL:  http://fineline.xs.mw -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=350,height=150');");
}
// End -->
</script>


<a href="javascript:popUp('newpage.html')">LINK</a>

But of course, newpage.html should be the name of your pop-up HTML, and try and come up with something more creative than the word LINK.

The size of the window may be altered by changing the variables in the script.