function input_radiocheck_required(input,nombre) {
	var sel = false;
	if (!input.length && input.checked==true) {
		sel = true;
	} else {
		for (var i=0;i<input.length;i++) {
			if (input[i].checked==true) {
				sel = true;
				break;
			}
		}
	}
	if (!sel) {
		addGlobalErrorMessage(input,"SEL_VALOR_EN_CAMPO",nombre);
		return false;
	}
	return true;
}
	 

