function randNum(min, max)
	{
		var randy = Math.round( Math.random() * (max - min) + min );
		return randy;
	}


