Instructions for iFrames

  1. Use [Inline Frame] to insert an iFrame.
  2. Double-click and give the iFrame a name, like "display".
  3. You can use a text-link to put a page in the iFrame.
    You need to type the URL (address).  
    Then type "display" in the Target box. 
    img2.gif
     
  4. To make a [Button] work properly:
    -  give the button a name, like "CNN"
    -  write a JavaScript function to respond to the click
        cnn.onclick = function( )
      {
         display.location = "http://www.cnn.com"
      }
  5. You can use a ComboBox to squeeze lots of links into a small space.
    Each entry will need a Title and a URL (address), like this:
    img1.gif
     
    You'll also need JavaScript to respond when an item is chosen:
       
    lotsmorelinks.onchange = function()
     {
       display.location = lotsmorelinks.value
     }

    Notice that "onchange" is the correct command, rather than "onclick".