<!--
// random number generator...do not edit
function generateRandom(range) {
	 return Math.floor(Math.random() * range) + 1;
}
//-->