/* Testy */
function hodnotenie()
{
var sucet = 0;
var pocet = 0;

for (i = 0; i < test.length; i++)
  {
  if (test.elements[i].checked && test.elements[i].name.slice(0,2)=="aa") { sucet += parseFloat(test.elements[i].value); pocet += 1;}
  }     
if (pocet < pocet_otazok){alert("Neodpovedali ste na všetky otázky!");  return;}

if (sucet > limit_5 )    {document.all.hodnotenie.innerText = hodnot_5; window.location.href="#dolu"; return;}
if (sucet > limit_4 )    {document.all.hodnotenie.innerText = hodnot_4; window.location.href="#dolu"; return;}
if (sucet > limit_3 )    {document.all.hodnotenie.innerText = hodnot_3; window.location.href="#dolu"; return;}
if (sucet > limit_2 )    {document.all.hodnotenie.innerText = hodnot_2; window.location.href="#dolu"; return;}
if (sucet > limit_1 )    {document.all.hodnotenie.innerText = hodnot_1; window.location.href="#dolu"; return;}
/*
if (sucet > limit_5 )    {document.all.hodnotenie.innerText = hodnot_5; window.location.href="#dolu"; return;}
if (sucet > limit_4 )    {document.all.hodnotenie.innerText = hodnot_4; window.location.href="#dolu"; return;}
if (sucet > limit_3 )    {document.all.hodnotenie.innerText = hodnot_3; window.location.href="#dolu"; return;}
if (sucet > limit_2 )    {document.all.hodnotenie.innerText = hodnot_2; window.location.href="#dolu"; return;}
if (sucet > limit_1 )    {document.all.hodnotenie.innerText = hodnot_1; window.location.href="#dolu"; return;}
*/
}

function vycistenie()
{
 for (i = 0; i < test.length; i++) 
 {if (test.elements[i].checked && test.elements[i].name.slice(0,2)=="aa") test.elements[i].checked=false; }
 document.all.hodnotenie.innerText = "Vyhodnotenie";
}

