I got the error message:
missing : in conditional expression.
for (Count = 1; Count ? Count++) {
.......................................^
I think it got something to do with:
for (Countx = 1; Countx < 8; Countx++) {
var Count, Countx;
for (Count = 1; Count ? Count++) {
document.write ("")
}
document.writeln('
')
}