This is JavaScript that will pop-up a new window. Click here.

Here's the script:

Put the following within your page's "head" element:

<script language="JavaScript">
<!--
function open_new_window(URL,Name,features)

{
window.open(URL,Name,features);
}
//-->
</script>

Put the following in the body of your HTML page where you want your link to appear:

<a href="#here" onClick="open_new_window('new_win.html','newwindow','toolbar=yes,status=yes,menubar=yes,scrollbars=yes,width=400,height=400')">Click here.</a>

Notes: