function showInfo(itemID) {
	prevSel = curSel;
	curSel = itemID;
	var prevField = prevSel.replace("_info","_table");
	var curField = curSel.replace("_info","_table");
	document.getElementById(prevSel).style.display = "none";
	document.getElementById(prevField).style.background = "#ffffff";
	
	document.getElementById(curSel).style.display = "inline";
	document.getElementById(curField).style.background = "#CCCCFF";
}

function viewCollection(boxPath){
	var z = boxPath.selectedIndex;
	var y = boxPath.options[z].value;
	location.href="details.cfm?catID="+y
}