function rn(low, high)
{
var amount = high - low +1;
amount = Math.floor(Math.random()*amount);
amount = amount + low;
return amount;
}