sizeX = 10; //width of the crossword
sizeY = 10; //height of the crossword
sizeA = 20; //size of the squares in pixels
cluesize = '9px'; //font size for the clue numbers
cluecolor = '#888888'; //font colour for the clue numbers
pensize = '11px'; //font size for the 'ink' to fill in the answers
pencolor = '#0000bb'; //font colour for the 'ink' to fill in the answers
gridcolor = '#000000'; //line colour for the crossword grid
gridbgcolor = '#ffffff'; //background colour of the crossword grid
gridfloat = 'right'; //crossword grid floats to left or right of container
gridmargin = '4px'; //margin around the crossword grid
gridimage = 'crosswordimage.gif'; //crossword image, for crappy old browsers, and for printout. This should look exactly like your real crossword grid.

// Populate rows and columns: These should really match up with the height and width specified above, but if there are too many values, they will just get ignored. KEY: 0 - black; 1 - playable square; 2 - playable square with clue.

row=new Array;
row[0] = new Array([2],[1],[1],[2],[1],[2],[1],[2],[1],[2]);
row[1] = new Array([1],[0],[0],[1],[0],[1],[0],[1],[0],[1]);
row[2] = new Array([1],[0],[2],[1],[1],[1],[1],[1],[1],[1]);
row[3] = new Array([2],[1],[1],[1],[0],[1],[0],[0],[0],[1]);
row[4] = new Array([0],[0],[1],[0],[0],[2],[1],[2],[1],[1]);
row[5] = new Array([2],[1],[1],[1],[2],[0],[0],[1],[0],[0]);
row[6] = new Array([1],[0],[0],[0],[1],[0],[2],[1],[1],[2]);
row[7] = new Array([2],[1],[2],[1],[1],[1],[1],[1],[0],[1]);
row[8] = new Array([1],[0],[1],[0],[1],[0],[1],[0],[0],[1]);
row[9] = new Array([2],[1],[1],[1],[1],[1],[1],[1],[1],[1]);

