// JavaScript Document

function toggleRadio(thisField,thisValue) {
	radioSet = eval("document.filelisting."+thisField)
	for (i=0;i < radioSet.length;i++) {
		if (radioSet[i].value == thisValue) 
			radioSet[i].checked = true;
	}
}
