

// The URLs to forward to

url = Array();

url[1] = "http://scholarword.com/undergrad_TA_license.htm"; // Scholarword for your Class

url[2] = "http://scholarword.com/undergrad_lab_license.htm"; // Scholarword Labs

url[3] = "http://scholarword.com/undergrad_library_license.htm"; // Scholarword Library

function forward(selectList, selection)

{

  selectList.selectedIndex = 0;

  if (selection == 0) { 

	  return; 

   }



  document.location = url[selection];

}