// JavaScript Document

function selectType(checkboxLabel,thisIndex,totalIndex)
{
	for (i = 0; i < totalIndex; i++)
	{
		if (i != thisIndex) 
		{
			var thisCheckbox = document.getElementById(checkboxLabel+i);
			thisCheckbox.checked = false;
		}
	}
}
