/*
 * Filename : scripts/other_combined_eeoc_65952_1263583050000.js
 * Flags    : other ajax viselem html
 * Created  : 15-Jan-2010 05:28
*/
/***************************************************************************************************************
 * cdpinclude/cthb.js
 ***************************************************************************************************************/
function cthb_hiderest(table, col, count) {
	if (!count) {
		count = 99;
	}
	for(var i=0; i<count; i++) {
		var elem = document.getElementById(table + "_" + i);
		if (!elem) {
			break;
		}
		if (i==col) {
			elem.style.display = '';
		} else {
			elem.style.display = 'none';
		}
	}
}



