// Array Function
function makeArray()
{
  var args = makeArray.arguments;
  for (var i = 0; i < args.length; i++)
  {
    this[i] = args[i];
  }
  this.length = args.length;
}

// This array holds the names and descriptions for the out_info_pages.
var out_info_pages = new makeArray("More Information",
//                                 "Kids in Physics",
                                 "Edible Car Contest",
                                 "Physics Olympics",
                                 "Astronomy Club");

// This array holds the urls for the out_info_pages.
var out_info_urls = new makeArray("",
//                                  "http://www.phys.ttu.edu/~tlcdl/kidsinphysics.html",
                                  "./sps/ediblecar.html",
                                  "./sps/olympic.html",
                                  "http://www.phys.ttu.edu/beta-cas");

// This function determines which page is selected and goes to it.
function goPage(form,dest)
{
  var i = form.menu.selectedIndex;
  if (i != 0)
  {
    window.location.href = dest[i];
    form.menu.selectedIndex = 0;
  }
}
