function puzzleID2puzzleLink (thePuzzleID) {
	switch(thePuzzleID) {
		case 1:
			return '<a href="http://jayisgames.com/archives/2007/03/rings_and_sticks.php" target="_blank">Comments or questions about Rings and Sticks?</a>';
			break
		case 2:
			return '<a href="http://jayisgames.com/archives/2007/03/gateway_2.php" target="_blank">Comments or questions about Gateway II?</a>';
			break
		case 3:
			return '<a href="http://jayisgames.com/archives/2007/03/planned.php" target="_blank">Comments or questions about PLANned?</a>';
			break
		case 4:
			return '<a href="http://jayisgames.com/archives/2007/02/nobuzzle_tree.php" target="_blank">Comments or questions about NOBuzzle Tree?</a>';
			break
		case 5:
			return '<a href="http://jayisgames.com/archives/2007/02/grow_word.php" target="_blank">Comments or questions about Grow Word?</a>';
			break
		case 6:
			return '<a href="http://jayisgames.com/archives/2007/02/orbit.php" target="_blank">Comments or questions about Orbit?</a>';
			break
		case 7:
			return '<a href="http://jayisgames.com/archives/2007/02/tower_of_babblers.php" target="_blank">Comments or questions about Tower of Babblers?</a>';
			break
		case 8:
			return '<a href="http://jayisgames.com/archives/2007/03/sprout.php" target="_blank">Comments or questions about Sprout?</a>';
			break
		case 9:
			return '<a href="http://jayisgames.com/archives/2007/03/frog_and_vine.php" target="_blank">Comments or questions about Frog and Vine?</a>';
			break
		case 10:
			return '<a href="http://jayisgames.com/archives/2007/03/grow_the_robot.php" target="_blank">Comments or questions about Grow the Robot?</a>';
			break
		case 11:
			return '<a href="http://jayisgames.com/archives/2007/03/enqbate.php" target="_blank">Comments or questions about enQbate?</a>';
			break
		case 12:
			return '<a href="http://jayisgames.com/archives/2007/03/chicken_grow.php" target="_blank">Comments or questions about Chicken Grow?</a>';
			break
		case 13:
			return '<a href="http://jayisgames.com/archives/2007/03/jelly_fusion.php" target="_blank">Comments or questions about Jelly Fusion?</a>';
			break
		case 14:
			return '<a href="http://jayisgames.com/archives/2007/03/growbal_warming.php" target="_blank">Comments or questions about Growbal Warming?</a>';
			break
		default: 
			return '<a href="http://jayisgames.com/" target="_blank">Comments or questions about these games?</a>';
	}
}
		
function setPuzzleLink(thePuzzleID) {
	document.getElementById('link-container').innerHTML = puzzleID2puzzleLink(thePuzzleID);
}