
   for (i=1; i<item; i++) {
        if (columnCounter == 0) {document.write('<TR>');}
        columnCounter++;
        document.write('<TD ALIGN=LEFT bgcolor="#a8a8a8" >');
        document.write('<FONT SIZE=4 face="arial, helvetica">');
        document.write('<A HREF="' + cellCollection[i].cellTarget + '" onMouseOver="' + mouseOver1 + cellCollection[i].cellDescription + mouseOver2 + '" title="' + cellCollection[i].cellDescription + '"><B>&nbsp;' + cellCollection[i].cellText + '</B></A>' );
        document.write('</TD>');
        if (columnCounter == 3) 
            {document.write('</TR>');
             columnCounter = 0;}
        }
   document.write('</TR>');

   columnCounter = 0;
   for (i=item+1; i<19; i++) {
        if (columnCounter == 0) {document.write('<TR>');}
        columnCounter++;
        document.write('<TD ALIGN=LEFT bgcolor="#a8a8a8" >');
        document.write('<FONT SIZE=4 face="arial, helvetica">');
        document.write('&nbsp;' );
        document.write('</TD>');
        if (columnCounter == 3) 
            {document.write('</TR>');
             columnCounter = 0;}
        }
        document.write('</TR></TABLE>');

   document.write('<CENTER>');
   document.write('<A HREF="../soundsMenu.htm">Return to Sounds menu</A></CENTER>');


