After looking at the error couple of times I figured out how to fix the problem, hopefully my fix is not going to kick me back We will find out in the next couple of weeks, but here it goes:

Code:
	for (var i=0; objInp[i]; i++) {
		if (objInp[i].type == 'radio' || objInp[i].type == 'checkbox') { // make sure we're dealing with radio boxes
			db = 'Name - ' + objInp[i].name + ' : ID - ' + objInp[i].id;
	//Fred C fix 
	if(objInp[i].nextSibling != null){
	//end Fred C fix 
			matches = objInp[i].nextSibling.innerHTML.match(seeker);
			if (matches) {
				db += ' : Adjusted!';
				objInp[i].onclick = function () { updateR(this); }
				if (objInp[i].checked)	updateR(objInp[i]);
			}
		}
//Fred C fix 
}
//end Fred C fix
		regdb('Onload RAD/CH', db);
	}
Fred.