﻿function HelpMeChoose_Button_onclick() {
    window.location="cardresults.asp";
}
function hideCellContent (tableID, rowIndex, cellIndex) {
  if (document.layers) {
    if (typeof rowIndex != undefined)
      var cell = document[tableID + 'CellR' + rowIndex + 'C' + cellIndex];          
      cell.visibility = 'hide';
  }
  else if (window.opera) {
    var cell = document.getElementById(tableID + 'CellR' + rowIndex + 
'C' + cellIndex);
    cell.style.visibility = 'hidden';
  }
  else if (document.all)
    
document.all[tableID].rows[rowIndex].cells[cellIndex].style.visibility = 
'hidden';
  else if (document.getElementById)
    
document.getElementById(tableID).rows[rowIndex].cells[cellIndex].style.v
isibility = 'hidden';
}
function showCellContent (tableID, rowIndex, cellIndex) {
  if (document.layers) {
    if (typeof rowIndex != undefined)
      var cell = document[tableID + 'CellR' + rowIndex + 'C' + 
cellIndex];
    cell.visibility = 'show';
  }
  else if (window.opera) {
    var cell = document.getElementById(tableID + 'CellR' + rowIndex + 
'C' + cellIndex);
    cell.style.visibility = 'visible';
  }
  else if (document.all)
    
document.all[tableID].rows[rowIndex].cells[cellIndex].style.visibility = 
'visible';
  else if (document.getElementById)
    
document.getElementById(tableID).rows[rowIndex].cells[cellIndex].style.v
isibility = 'visible';
}