

// The URLs to forward to

url = Array();

url[1] = "http://scholarword.com/mshs-ta-license-purchase.htm"; // Scholarword for your Class

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

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

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

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

url[6] = "http://scholarword.com/nonprofit-government-site-license.htm#Purchase"; // Scholarword for Nonprofits & Government




function forward(selectList, selection)

{

  selectList.selectedIndex = 0;

  if (selection == 0) { 

	  return; 

   }



  document.location = url[selection];

}