I'm wondering if it's possible to have a bunch of functions like:
function board_1(){
}
function board_2(){
}
function board_3(){
}
Then call the function like:
var num = 2;
board_+num();
I know you can do something with parameters, but that isn't going to work for me in this situation.