function my_rand(max_value) {
  result = Math.floor((max_value)*Math.random());
  return result;
}