Pop-up Window
 << Back | Home | Next >>

Instructions:

  1. Part one is the JavaScript function you will need to call
  2. Put first part of the script anywhere between your head tags.
     (<head> and </head>)
  3. Change "yourpage.htm" to the path (relative or absolute) 
    of the page you want to pop-up.
    Ex. "example.htm"
  4. Optionally you can change other properties (height, width e.t.)
  5. Part two is the line you need to link to.
    Ex.
    <a href="javascript:winpop()">example</a>

Part 1. Put this part between your head tags:

<script language="JavaScript">
<!--

function winpop() {
window.open("yourpage.htm","","height=610,width=500,status=no,toolbar=no,directories=no,
menubar=no,location=no,resizable=yes,scrollbars=no, left=150,top=25");
}

// End -->
</script>

Part 2. Link to this line:

javascript:winpop()

Close this window