round_up = function(x,factor){ return x - (x%factor) + (x%factor>0 && factor);}