function RedondearDecimales(b,a){var c=0;switch(a){case 1:c=Math.ceil(b);break;case 2:c=Math.floor(b);break;case 3:c=Math.ceil(b);break}return c};