<!--
function checkBoxValidate(cb) {
for (j = 0; j < 8; j++) {
if (eval("document.comments.category[" + j + "].checked") == true) {
document.comments.category[j].checked = false;
if (j == cb) {
document.comments.category[j].checked = true;
			}
		}
	}
}
//-->