Click for Popup Window

If you click on the “Sample” button at left, a new browser window should appear, while the contents of this window stay the same.

Making a pop-up window in a frames-using website is similar to creating a “non-framed” popup window, but there’s a bit of a twist...

  1. Create an image (or text) you wish to set up the link with
  2. Select the Image or Text and click on the “Link” button which will appear in the Properties window..
  3. Select the “Internal Link” tab
  4. Select the Current Page
  5. Click on the “HTML” button in the bottom left corner of the link window
  6. Type in the following  code in the “Inside Tag” field:

    ONCLICK="window.open('../html/whatever.html',
    'NameForTitleBarInNewWindow',
    'toolbar=no,location=no,directories=no,
    status=no,menubar=no,scrollbars=no,resizable=no,
    copyhistory=no,width=???,height=???')”



    as one line, where   ./html/whatever.html is the page you’re linking to, NewWindow is the title you wish to have appear in the new window, and width and height are set to the width and height of the page in pixels.