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.
	*/
"Pearson Assessments Web Sites", "",

"Main Site", "http://www.pearsonassessments.com",
"Special Needs Assessments", "http://ags.pearsonassessments.com",
"Psychological Assessments", "http://www.pearsonassessments.com/home.htm",
"Scanners/Forms", "http://www.pearsonncs.com",
"Speech and Language", "http://www.speechandlanguage.com",
"Support Site", "http://support.pearsonassessments.com",
"Training Site", "http://training.pearsonncs.com");


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.plist.selAssessmentList;
	sTargetUrl = selOptionList.options[selOptionList.selectedIndex].value;

	if (sTargetUrl != "")
	{
		// location.href = sTargetUrl;
		window.open(sTargetUrl);

	}
}
