"; /* If we are at the end of a row we must close the row in HTML. */ if ( (counter == 5) || (counter == 10) || (counter == 20) || (counter == 25) ) { tableCode += "" } /* Here we write the individual table data cell (TD) with the correct number contained within it. */ document.write(tableCode); } /* Here we are done with the table so we must close it in HTML. */ document.write(""); } //-->