function getRandomNumber(inMin, inMax)
{
	return inMin + Math.floor(Math.random() * (inMax - inMin + 1));
}