// this area controls the list boxes


var listboxproducts=new Array();

// this value will display in the list box

listboxproducts["productnames"]=new Array(
"Select a test",
"Exam 802 System Admin Update",
"Exam 701 App Dev Update",
"Exam 702 System Admin Update");

// this is the URL corresponding to the values above

listboxproducts["urlValue"]=new Array(
"",
"ACLP802_product_info.html",
"ACLP701_product_info.html",
"ACLP702_product_info.html"
);





function fillproducts(){ 
  //reset and load data into productnames select box 
  document.selector.productnames.length = 0; 
  selectExam = document.selector.productnames.options; 
  selectExam.length=listboxproducts["productnames"].length;
  for(i=0;i<selectExam.length;i++){ 
    selectExam[i].text=listboxproducts["productnames"][i]; 
    selectExam[i].value=listboxproducts["urlValue"][i]; 
  } 
  document.selector.productnames.selectedIndex=0; 
}


function jumpPage(newLoc) {
	if (newLoc !="") {
		window.location.href = newLoc;
	}
}

