This page uses CSS and javascript. If you can see this message, CSS (or javascript) is not enabled in your browser options.
The page will not appear as intended.
You can visit the other version of the site.

Lists: modification

If the files called by "Pull Down or Scrolling Lists" calling .php, .asp and .cfm files are not in the capture, if you cannot find the file names or if all the pages have the same name, the mirror will be incomplete.

When menus do not work although all necessary files are present, this javascript function and a few modifications will disable the "Submit" or "Reset" button, but choosing an option should execute the option file:

  1. add a function for "form1"
    <script type="text/javascript">
    function change()
    {
    current = document.form1.menu1.selectedIndex;    
    window.location= document.form1.menu1[current].value;
    }
    </script>
    
  2. modify "form1"
    <form action="" method="post" name="form1" id="form1">
        <select name="menu1" size="1" onchange="change();">
    

If the (or some) files are absent, you can add their names in the URLs to capture for html files or you can visit the pages and save them where they are missing, then rename them.

Here is another function to fix a pull down menu:

  1. add this function
    <script type="text/javascript">
    function goToPage(page) {parent.location=page;}
    </script>
    
  2. modify the form
    <form name="form" >
    <select name="page" onChange="goToPage(this.options[selectedIndex].value);">
    

Modify each "option value" with the page to display.

Valid CSS! Valid XHTML 1.0!