function puzzleID2puzzleLink (thePuzzleID) {
	switch(thePuzzleID) {
		case 1:
			return '<a href="http://jayisgames.com/archives/2006/12/puzzle_1_and_puzzle.php" target="_blank">Comments or questions about Puzzle 1?</a>';
			break
		case 2:
			return '<a href="http://jayisgames.com/archives/2006/12/puzzle_1_and_puzzle.php" target="_blank">Comments or questions about Puzzle 2?</a>';
			break
		case 3:
			return '<a href="http://jayisgames.com/archives/2006/09/sigil_of_binding.php" target="_blank">Comments or questions about Sigil of Binding?</a>';
			break
		case 4:
			return '<a href="http://jayisgames.com/archives/2006/09/submachine_zero.php" target="_blank">Comments or questions about Submachine Zero?</a>';
			break
		case 5:
			return '<a href="http://jayisgames.com/archives/2006/09/gear_puzzle.php" target="_blank">Comments or questions about Gear Puzzle?</a>';
			break
		case 6:
			return '<a href="http://jayisgames.com/archives/2006/10/free_the_bird.php" target="_blank">Comments or questions about Free the Bird?</a>';
			break
		case 7:
			return '<a href="http://jayisgames.com/archives/2006/09/the_alchemists_apprentice.php" target="_blank">Comments or questions about The Alchemist\'s Apprentice?</a>';
			break
		case 8:
			return '<a href="http://jayisgames.com/archives/2006/09/jewel_drop.php" target="_blank">Comments or questions about Jewel Drop?</a>';
			break
		case 9:
			return '<a href="http://jayisgames.com/archives/2006/10/quadra_pair_42.php" target="_blank">Comments or questions about Quadra Pair 42?</a>';
			break
		case 10:
			return '<a href="http://jayisgames.com/archives/2006/09/liquid_colors.php" target="_blank">Comments or questions about Liquid Colors?</a>';
			break
		case 11:
			return '<a href="http://jayisgames.com/archives/2006/09/keys.php" target="_blank">Comments or questions about Keys?</a>';
			break
		case 12:
			return '<a href="http://jayisgames.com/archives/2006/09/thief.php" target="_blank">Comments or questions about Thief?</a>';
			break
		case 13:
			return '<a href="http://jayisgames.com/archives/2006/09/cyberpunk.php" target="_blank">Comments or questions about Cyberpunk?</a>';
			break
		case 14:
			return '<a href="http://jayisgames.com/archives/2006/12/instruments.php" target="_blank">Comments or questions about Instruments?</a>';
			break
		case 15:
			return '<a href="http://jayisgames.com/archives/2006/08/clack.php" target="_blank">Comments or questions about Clack?</a>';
			break
		case 16:
			return '<a href="http://jayisgames.com/archives/2006/09/gateway.php" target="_blank">Comments or questions about Gateway?</a>';
			break
		case 17:
			return '<a href="http://jayisgames.com/archives/2006/11/wired.php" target="_blank">Comments or questions about Wired?</a>';
			break
		case 18:
			return '<a href="http://jayisgames.com/archives/2006/09/colour_connect.php" target="_blank">Comments or questions about Colour Connect?</a>';
			break
		case 19:
			return '<a href="http://jayisgames.com/archives/2006/11/houses.php" target="_blank">Comments or questions about Houses?</a>';
			break
		case 20:
			return '<a href="http://jayisgames.com/archives/2006/10/weight.php" target="_blank">Comments or questions about Weight?</a>';
			break
		case 21:
			return '<a href="http://jayisgames.com/archives/2006/10/personal_universe.php" target="_blank">Comments or questions about Personal Universe?</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);
}