/* Write the 'select' frame. */
function gen_select() {
  select.document.open();
  dw_s('<head>');
  dw_s('<link rel="stylesheet" href="select.css" type="text/css">');
  dw_s('</head>');
  dw_s('<body>');
  dw_s('<h3>');
  dw_s('Click image to view it enlarged');
  dw_s('</h3>');
  for (var i = 0; i <= ctrMax; ++i) {
    anchorWrite(i);
  }
  dw_s('</body>');
  select.scrollTo(0,0);
  select.document.close();
}

function anchorWrite(kount) {
  /* These variables are not necessary, but improve readability. */
  var fn = arr[kount].tFname();
  var ti = arr[kount].title;
  dw_s('<a href="javascript:top.selectPage(' + kount + ')">');
  dw_s('<img class=thumb src="' + fn + '" alt="' + ti + '" border=1 hspace=4 vspace=4>');
  dw_s('<div class=ititle>' + 'Title: ' + ti + '</div>');
  dw_s('</a>');
}
