﻿// by Lionel Sakou
// Quick Services Links
// This code opens a page each time a link is selected from the "Services" dropdown menu
var thePageToOpen;

      function change_page( theList ) 
      {
        thePageToOpen = theList.options[theList.selectedIndex].value;
        
        if ( thePageToOpen == 0) {
            // do nothing
        }
        else {
            if ( thePageToOpen == 1 ) {
                document.URL = "databaseDesign.html";
            }
            else if ( thePageToOpen == 2 ) {
                document.URL = "programServices.html";
            }
            else if ( thePageToOpen == 3 ) {
                document.URL = "localServices.html";
            }
        }
      }
