the final panel

I've chosen to call the right panel final.

It's very similar to the temp panel so you should have a go at getting it on the screen before looking at my efforts. Use ids 200 to 203.

As a guide, there are six different places that will require work.

setup_final() in functions.js
function setup_final() {
  var s1="<img src='cards/empty.png' class='final' id='20";
  var s2="' onclick='card_clicked(this);'>";
  for (var i=0;i<4;i++) {
    document.write(s1+i+s2);
  }
}

more →