function testChecked()
{
 var checked_total=0;
 var table=document.getElementById("catalogtable");
 var tbody=table.firstChild;
 while (tbody.nodeType!=1)
  tbody=tbody.nextSibling;
 var rows=tbody.rows; 
 for (i=1; i < rows.length; i++)
 {
  var row=rows[i];
  var td=row.firstChild;
  while (td.nodeType!=1)
   td=td.nextSibling;
  var label=td.firstChild; 
  var checkbox=label.firstChild;
  
  if (checkbox.checked)
   checked_total++;
 } 
 //------------
 if (checked_total >= 2)
  return true;
 else
 {
  alert('Выберите не менее 2 товаров для сравнения!');
  return false; 
 } 
}