<!--

var size = 1;

buildList();


function topic(name, url) {
  this.name = name;
  this.url = url;
}

function byName(a, b) {
  var anew = a.name.toLowerCase();
  var bnew = b.name.toLowerCase();
  if (anew < bnew) return -1;
  if (anew > bnew) return 1;
  return 0;
}

function go(which) {
  n = which.selectedIndex;
  if (n != 0) {
    var url = eval("ar[n].url")
    location.href = url;
  }
}

function printList() {
  with (document) {
    document.write('<SELECT NAME="list" SIZE="', size, '" onChange="go(this)">');
    for (var i = 0; i < ar.length - 1; ++i) {
      document.write('<OPTION VALUE="', ar[i].url, '">', ar[i].name);
    }
    document.write('</SELECT>');
  }
}

function buildList() {
//  if (!window.Array) return;
  ar = new Array(); // define an array of topics

  ar[0] = new topic(" Select a topic ...","");
  ar[2] = new topic("Search","/search.htm");
  ar[3] = new topic("Background","/background.htm");
  ar[4] = new topic("Home","/index.htm");
  ar[5] = new topic("Support","/support/index.htm");
  ar[6] = new topic("Contact","/contact.htm");
  ar[7] = new topic("Copyright","http://www.ja.net/copyright.html");
  ar[8] = new topic("Briefing Days","/bd2008presentations.htm");
  ar[9] = new topic("JANET(UK)","http://www.ukerna.ac.uk/");
  ar[10] = new topic("ELWa","http://www.elwa.ac.uk");
  ar[11] = new topic("Support: Studio Design","/support/studio.htm");
  ar[12] = new topic("Support: Networking","/support/network.htm");
  ar[13] = new topic("Development","/development/index.htm");
  ar[14] = new topic("Location","/location.htm");
  ar[15] = new topic("Studio Information","/forum/studioinfo.htm");
  ar[16] = new topic("Procurement","/procurement/index.htm");
  ar[17] = new topic("Forum","/forum/index.htm");
  ar[18] = new topic("Studio Allocation","/forum/finalallocation.htm");
  ar[19] = new topic("Studio Development","/forum/studiodevelopment.htm");
  ar[20] = new topic("Usage Statistics","/usagestats/vcstats07_08.htm");
  ar[21] = new topic("Technical Support","/contact.htm#Support");
  ar[22] = new topic("Project Administration","/contact.htm#Administration");
  ar[23] = new topic("Advisory Group","/advisorygroup.htm");
  ar[24] = new topic("Project Management","/contact.htm#Management");
  ar[25] = new topic("Studio Lighting","/forum/studiolighting.htm");
  ar[26] = new topic("Service Update","/service_update_july05.htm");
  ar[27] = new topic("Studio Furniture","/forum/studiodevelopment.htm#Furniture");
  ar[28] = new topic("Frequently Asked Questions","/faq/index.htm");
  ar[29] = new topic("Studio Equipment","/forum/studioequipment.htm");
  ar[30] = new topic("Additional Equipment","/forum/addequipment.htm");
  ar[31] = new topic("Acceptable Use Policy","/vc.htm#Policy");
  ar[32] = new topic("Regional Support Centre","http://www.rsc-wales.ac.uk/");
  ar[33] = new topic("Dysg","http://www.dysg.org.uk/index.asp");
  ar[34] = new topic("JVCS Booking Service","http://www.jvcs.video.ja.net/");
  ar[35] = new topic("VTAS","http://www.video.ja.net/");
  ar[36] = new topic("Videoconferencing","/vc.htm");
  ar[37] = new topic("Studios","/studios/index.htm");
  ar[38] = new topic("Presentations","/bd2008presentations.htm");
  ar[39] = new topic("Studio Guides","/vc.htm");
  ar[40] = new topic("Fault Reporting","/support/index.htm#Fault");
  ar[41] = new topic("IP Videoconferencing","/ipvcp/index.htm");
  ar[42] = new topic("Training","/training/index.htm");
  ar[43] = new topic("e-mail lists","/support/maillist.htm");
  ar[44] = new topic("Blaen Ddalen Gymraeg","http://www.rhfc.ac.uk/index.htm");
  ar[45] = new topic("Booking Contacts","/studios/bookinginfo");
  ar[46] = new topic("Case Studies","/casestudies/intro.htm");
  ar[47] = new topic("Newsletter","/Newsletter/index.htm");
  ar[49] = new topic("Studio Photographs","/studiophotographs/index.htm");
  ar[50] = new topic("CYDAG","/cydag/index.htm");
  ar[51] = new topic("JVCS Booking Service Guide","http://www.jvcs.ja.net/docs/bookuserguide.pdf");
  ar[53] = new topic("Welsh Home Page","http://www.rhfc.ac.uk/index.htm");
  ar[54] = new topic("Training Materials","/training/trainingmaterials.htm");
  ar[55] = new topic("Welsh Translation Pilot","/development/wtp/index.htm");
  ar[56] = new topic("JVCS OnDemand","http://www.jvcs.ja.net/ondemand");
  ar[57] = new topic("JVCS Check","http://www.jvcs.ja.net/ondemand/check");
  ar[58] = new topic("WVN Leaflet","/leaflet/index.htm");
ar[59] = new topic("NFER Review of WVN","/review.htm");
ar[60] = new topic("WLVP","/vcwlvp.htm");  
  if (ar.sort) ar.sort(byName);
  printList();
}

// -->
