
<!--
function changer() {
	for (var r=0; r < document.srchform.RDOINPRESS.length; r++) {
		if (document.srchform.RDOINPRESS[r].checked == true) {
			var rdo = document.srchform.RDOINPRESS[r].value;
		}
	}

	if (rdo=="0b") {
		var theOptions=new Array (
			"All Product Types",
			"Journals Articles, Books, Chapters",
			"Fact Sheets, Reports, Circulars",
			"ARMI Annual Reports",
			"ARMI in the Media",
			"Presentation and Posters",
			"Web Sites",
			"Protocols, Standard Operating Procedures",
			"Symposia and Workshops Sponsored",
			"Databases",
			"Software Applications"); 

		var theValues=new Array (
			"",
			"J",
			"F",
			"R",
			"N",
			"P",
			"W",
			"S",
			"Y",
			"D",
			"A"); 
	} else if (rdo=="0a") {
		var theOptions=new Array (
			"All Product Types",
			"Journals Articles, Books, Chapters",
			"Fact Sheets, Reports, Circulars",
			"ARMI Annual Reports",
			"ARMI in the Media",
			"Presentation and Posters"); 

		var theValues=new Array (
			"",
			"J",
			"F",
			"R",
			"N",
			"P"); 
	}

	var i = document.srchform.TYPE.options.length;

	if (i > 0) { 
		document.srchform.TYPE.options.length -= i; document.srchform.TYPE.options[i] = null; 
	}

	var theCount=0;

	for (var e=0; e<theOptions.length; e++) {
		document.srchform.TYPE.options[theCount] = new Option();
		document.srchform.TYPE.options[theCount].text = theOptions[e];
		document.srchform.TYPE.options[theCount].value = theValues[e];
		theCount=theCount+1; 
	}
}
//-->