function funcVerificarCheckBoxCheckeado(object){
	for (i=0;i<object.length;i++){ 
		if (object[i].checked)
			return true;
	}
	return false;
}