// 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 ug_info_pages.
var ug_info_pages = new makeArray("More Information",
                                 "Advisors",
                                 "Course Catalog",
                                 "About Lubbock",
                                 "Scholarships",
                                 "Contact Form",
                                 "Edible Cars");

// This array holds the urls for the ug_info_pages.
var ug_info_urls = new makeArray("",
                                 "./ug_advisors.html",
                                 "http://www.depts.ttu.edu/officialpublications/catalog/ASPHYS.html",
                                 "http://visitlubbock.org/",
                                 "./ug_scholar_list.html",
                                 "./ug_contact.html",
                                 "http://www.phys.ttu.edu/~ritlg/spsec/spsec.html");

// 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;
  }
}
