function confirm_q()
{
cq = confirm("Naozaj chcete odstrániť všetky produkty s košíka?");
if (cq) {var stats = true} else {var stats = false};
return stats;
};

function toggle(cislo) {
if(document.getElementById(cislo).style.display=='none')
{
document.getElementById(cislo).style.display = '';

} else {
document.getElementById(cislo).style.display = 'none';
}
};
