function swapList(listNum)
{
	for(var i=0;i!=5;i++)
	{
		if(i!=listNum) document.getElementById("swapList"+i).style.display="none";
		else document.getElementById("swapList"+i).style.display="block";
	}
}

function fillInSelect(fillNum)
{
	var boxName = "selBox"+fillNum;
	var box = document.getElementById(boxName);
	document.getElementById("fillBox").value = box.options[box.selectedIndex].value;
}