<!-- Bottom-Left Quarter of 19x19 Go Board  07/04/2000-03/17/2011 -->
<!-- ------------------------------------------------- 08/21/2000 -->
<!-- www.davar.net/GO/BRDQUART.JS                                 -->
<!-- Copyright (C) 2000-2011 by Vladimir Veytsel                  -->
<!--
//       0 0 0   0   0   0   0   0   0   0   1   1
//       0 1 2   3   4   5   6   7   8   9   0   1

// 00   =9 | +---+---+---o---+---+---+---+---+---o
//         | |   |   |   |   |   |   |   |   |   |
// 01   +8 | +---+---+---+---+---+---+---+---+---+
//         | |   |   |   |   |   |   |   |   |   |
// 02   +7 | +---+---+---+---+---+---+---+---+---+
//         | |   |   |   |   |   |   |   |   |   |
// 03   +6 | +---+---+---+---+---+---+---+---+---+
//         | |   |   |   |   |   |   |   |   |   |
// 04   +5 | +---+---+---+---+---+---+---+---+---+
//         | |   |   |   |   |   |   |   |   |   |
// 05   +4 | +---+---+---+---+---+---+---+---+---+
//         | |   |   |   |   |   |   |   |   |   |
// 06   +3 | +---+---+---o---+---+---+---+---+---o
//         | |   |   |   |   |   |   |   |   |   |
// 07   +2 | +---+---+---+---+---+---+---+---+---+
//         | |   |   |   |   |   |   |   |   |   |
// 08   +1 | +---+---+---+---+---+---+---+---+---+
//         | |   |   |   |   |   |   |   |   |   |
// 09   +0 | +---+---+---+---+---+---+---+---+---+
// 10      +--------------------------------------
// 11       +0  +1  +2  +3  +4  +5  +6  +7  +8  =9

// i - Row    index (0- 11)
// j - Column index (0- 11)
// k - Array  index (0-143)  k=12*i+j
//     I.e., common sense notation [i,j] translates into linear [12*i+j]
//     that is directly supported by JavaScript (12 - size of the square)
//     Same notation is used also when "i" or/and "j" are constants
//     in order to make script readable in terms of Row/Column indexes.

   Board = new Array(144)  // Board array 12x12 (bottom-left quarter)

// Board main body
   for (i=0;i<10;i++)
       {Sign="+"
        if (i==0) Sign="="
        Board[12*i+0]="<TR><TD>"+Sign+String(9-i)+"&nbsp;</TD>"
        Board[12*i+1]="<TD><IMG SRC='../RL.JPG' WIDTH= 8 HEIGHT=33></TD>"
        Board[12*i+2]="<TD><IMG SRC='../EL.JPG' WIDTH=33 HEIGHT=33></TD>"
        for (j=3;j<12;j++)
            {Point="EC"
             if (((i==0)||(i==6))&&((j==5)||(j==11))) Point="HS"
             Board[12*i+j]="<TD><IMG SRC='../"+Point+".JPG' WIDTH=33 HEIGHT=33></TD>"
            }
            Board[12*i+11]=Board[12*i+11]+"</TR>"
       }

// Board bottom line
   Board[12*9+0]="<TR><TD>+0&nbsp;</TD>"
   Board[12*9+1]="<TD><IMG SRC='../RL.JPG'  WIDTH= 8 HEIGHT=33></TD>"
   Board[12*9+2]="<TD><IMG SRC='../EBL.JPG' WIDTH=33 HEIGHT=33></TD>"
   for (j=3;j<12;j++)
       Board[12*9+j]="<TD><IMG SRC='../EB.JPG' WIDTH=33 HEIGHT=33></TD>"
   Board[12*9+11]=Board[12*9+11]+"</TR>"

// Board bottom border
   Board[12*10+0]="<TR><TD></TD>"
   Board[12*10+1]="<TD><IMG SRC='../RBL.JPG' WIDTH=8 HEIGHT=8></TD>"
   for (j=2;j<12;j++)
       Board[12*10+j]="<TD><IMG SRC='../RB.JPG' WIDTH=33 HEIGHT=8></TD>"
   Board[12*10+11]=Board[12*10+11]+"</TR>"

// Bottom horisontal coordinates
   Board[12*11+0]="<TR><TD></TD>"
   Board[12*11+1]="<TD></TD>"
   for (j=2;j<12;j++)
       {Sign="+"
        if (j==11) Sign="="
        Board[12*11+j]="<TD ALIGN=Center>"+Sign+String(j-2)+"</TD>"
       }
   Board[12*11+11]=Board[12*11+11]+"</TR>"

//-->
