var asOption = new Array(
	/* On each of the following lines put the display text of each option followed by the URL value 
	   for that option.  Make sure that the entries are separated by a comma and note that the
	   last entry is not followed by a comma.
	   The code is set to ignore options where the URL value is equal to "".  This way, you can use
	   option elements that can serve as headers or other purposes that do not cause the browser to 
	   jump to a new URL.
	*/
"Product/Service Directory", "",

"Markets Served  - - - - - - - - - - - - - - -  ", "",
"&nbsp;&nbsp;&nbsp;K-12 Education", "/k12/",
"&nbsp;&nbsp;&nbsp;Higher Education", "/highered/",
"&nbsp;&nbsp;&nbsp;Business", "/business/",
"&nbsp;&nbsp;&nbsp;Healthcare", "/healthcare/",
"&nbsp;&nbsp;&nbsp;Government", "/govt/",
"&nbsp;&nbsp;&nbsp;Associations", "/business/association.htm/",

"Solutions  - - - - - - - - - - - - - - - - - - - ", "",
"&nbsp;&nbsp;&nbsp;Testing", "/fa-redirect.htm",
"&nbsp;&nbsp;&nbsp;Surveys", "/survey-redirect.htm",
"&nbsp;&nbsp;&nbsp;Marketing/Customer", "/business/crm.htm",
"&nbsp;&nbsp;&nbsp;Employee/HR", "/business/employee.htm",

"Scanners  - - - - - - - - - - - - - - - - - - - ", "/systems/",
"&nbsp;&nbsp;&nbsp;OMR Scanners", "/scanners/",
"&nbsp;&nbsp;&nbsp;Image Scanners", "/imaging/",
"&nbsp;&nbsp;&nbsp;SelfScore Test Scoring Machines", "/selfscore/",
"&nbsp;&nbsp;&nbsp;Pearson Loan (PAL) Program", "/PAL/index.htm",
"&nbsp;&nbsp;&nbsp;Scanner Supplies", "http://support.pearsonncs.com",
"&nbsp;&nbsp;&nbsp;ScanTools Utility Software", "/scantools/",
"&nbsp;&nbsp;&nbsp;Textbook Programs ", "/fa-redirect.htm",

"Software  - - - - - - - - - - - - - - - - - - - ", "/software/",
"&nbsp;&nbsp;&nbsp;NCS DesignExpert Software", "/forms/design-expert.htm",
"&nbsp;&nbsp;&nbsp;NCS Docuscan Patient Encounter System", "/docuscan/",
"&nbsp;&nbsp;&nbsp;PASeries", "/fa-redirect.htm",
"&nbsp;&nbsp;&nbsp;Pearson Inform", "/fa-redirect.htm",
"&nbsp;&nbsp;&nbsp;Pearson Benchmark", "/fa-redirect.htm",
"&nbsp;&nbsp;&nbsp;Perception Online Assessment Software", "/perception/",
"&nbsp;&nbsp;&nbsp;Prosper assessment system", "/fa-redirect.htm",
"&nbsp;&nbsp;&nbsp;Prosper for Shining Star", "/fa-redirect.htm",
"&nbsp;&nbsp;&nbsp;Remark Classic OMR Software", "/remark/",
"&nbsp;&nbsp;&nbsp;SurveyTracker Plus Software", "/survey-redirect.htm",
"&nbsp;&nbsp;&nbsp;Survey Suites", "/survey-redirect.htm",
"&nbsp;&nbsp;&nbsp;Textbook Programs ", "/fa-redirect.htm",


"Services   - - - - - - - - - - - - - - - - - - - ", "/services/",
"&nbsp;&nbsp;&nbsp;Print Services", "/print-services/index.htm",
"&nbsp;&nbsp;&nbsp;Processing Services", "/services/processing.htm",
"&nbsp;&nbsp;&nbsp;Professional Integration Services", "/services/consulting.htm",

"&nbsp;&nbsp;&nbsp;Consilio Data Analysis Service", "/survey-redirect.htm",
"&nbsp;&nbsp;&nbsp;Support Site", "http://support.pearsondata.com",
"&nbsp;&nbsp;&nbsp;Training Site", "http://training.pearsondata.com",

"Forms  - - - - - - - - - - - - - - - - - - - - ", "/forms/",
"&nbsp;&nbsp;&nbsp;Standard Forms", "/forms/standard.htm",
"&nbsp;&nbsp;&nbsp;Custom Print Services", "/print-services/index.htm");


function createAssessmentListSelect()
{
	document.write('<select name="selAssessmentList" onchange="loadAssessmentListPage();">');
	for (i=0; i<asOption.length; i=i+2)
	{
		document.write('<option value="' +  asOption[i+1] + '">' + asOption[i] + '</option>');
	}
	document.write('</select>');
}

function loadAssessmentListPage()
{
	selOptionList = document.all.selAssessmentList;
	sTargetUrl = selOptionList.options[selOptionList.selectedIndex].value;
	if (sTargetUrl != "")
	{
		location.href = sTargetUrl;
	}
}
