<!--
function generateRandom(x) {
  			var range = x;
  			return Math.floor(Math.random() * range) + 1;
}
//-->