

function getRandomNum(max){
	max++;
	var rndNum = Math.floor(Math.random()*max);
	return rndNum;
}
