	if (is.major > 2) {
		document.write("<TABLE WIDTH=\"" + card_width * numcols + "\" HEIGHT=\"" + card_height * numrows + "\" CELLPADDING=\"0\" CELLSPACING=\"3\">");
		document.write("<TR><TD COLSPAN=\"" + numcols + "\" ALIGN=\"RIGHT\">");
		document.write("<a href=\"javascript: newGame();\"><img src=\"Images/newgame.gif\" width=\"76\" height=\"20\" border=\"0\" alt=\"\"></a><div align=\"center\"><img src=\"Images/whitedot.gif\" width=\"154\" height=\"20\" border=\"0\" name=\"gameover\" alt=\"\" onLoad=\"gameover_image = this\"><BR><img src=\"Images/rblank.gif\" width=\"299\" height=\"18\" border=\"0\" name=\"response\" alt=\"\" onLoad=\"response_image = this\"></div></TD></TR>");
		document.write("<TR><TD COLSPAN=\"" + numcols + "\">");
		document.write("<FONT FACE=\"Comic Sans MS, Verdana, Arial, Helvetica\" SIZE=\"2\"><b><div align=\"center\">Number of Tries: <img src=\"Images/numbers_fblank.gif\" width=\"8\" height=\"13\" border=\"0\" name=\"tries_digit1\" alt=\"\" onLoad=\"tries_digit1_image = this\"><img src=\"Images/numbers_fblank.gif\" width=\"8\" height=\"13\" border=\"0\" name=\"tries_digit2\" alt=\"\" onLoad=\"tries_digit2_image = this\"><img src=\"Images/numbers_f0.gif\" width=\"8\" height=\"13\" border=\"0\" name=\"tries_digit3\" alt=\"\" onLoad=\"tries_digit3_image = this\">&nbsp;&nbsp;&nbsp;&nbsp;Number of Matches: <img src=\"Images/numbers_fblank.gif\" width=\"8\" height=\"13\" border=\"0\" name=\"matches_digit1\" alt=\"\" onLoad=\"matches_digit1_image = this\"><img src=\"Images/numbers_f0.gif\" width=\"8\" height=\"13\" border=\"0\" name=\"matches_digit2\" alt=\"\" onLoad=\"matches_digit2_image = this\"></div></b></FONT></TD></TR>");
		position_index = 0;
		for (rowcnt = 0; rowcnt < numrows; rowcnt++) {
			document.write("<TR>");
			for (colcnt = 0; colcnt < numcols; colcnt++) {
				image_pointers[position_index] = new Image();
				document.write("<TD><A HREF=\"javascript: if (done_loading) tryCard(" + position_index + ")\" ><IMG NAME=\"card" + position_index + "\" WIDTH=\"" + card_width + "\" HEIGHT=\"" + card_height + "\" BORDER=\"0\" SRC=\"kidscardgame/Images/kidshidden1.gif\" onLoad=\"image_pointers\[" + position_index + "\] = this\"></A></TD>");
				position_index += 1;
			}
			document.write("</TR>");
		}
		document.write("</TABLE>");
		setTimeout('newGame()', 200);
	} else document.write("<FONT FACE=\"Verdana, Arial, Helvetica\" SIZE=\"3\"><b><div align=\"center\">Sorry, but this game will only run in version 4.0 and greater browsers.  It might be a good time to upgrade your software. - administrator@hooah4health.com</div></b></FONT>");

