<!--
	var ic = 3;
	var xoxo = new Array(ic);
				
	xoxo[0] = "Looks great and hits the casual gaming maxim of 'a minute to learn, a lifetime to master" 
	xoxo[1] = "Great playability and amazingly addictive - KooZac is a cult game in the making"
	xoxo[2] = "Tetris meets Sudoku - KooZac has all the right ingredients to become a future classic"
	//xoxo[3] = "Tetris meets Sudoku - KooZac has all the right ingredients to become a future classic"
	//xoxo[4] = "Tetris meets Sudoku - KooZac has all the right ingredients to become a future classic"
				
	function pickRandom(range) {
	if (Math.random)
		return Math.round(Math.random() * (range-1));
	else {
		var now = new Date();
		return (now.getTime() / 1000) % range;
		}
	}

	var choice = pickRandom(ic);
// -->