function rnd(n, m){
var random = Math.round(Math.random()*(m-n)+n);
return random;
}

05-25 16:56