function checkTotal() {
document.listForm.total.value = '';

var sum = 0;
var koliko_ima_artikel_popusta = 0;
var koliko_popusta_ima_artikel = 0;
var st_izbranih_artiklov_s_popustom = 0;
var popust_za_izdelke_s_popustom = 0;
var zacasna_vsota_cen_artiklov_s_popustom = 0;

var izbira = document.listForm.izbira;

for ( i = 0; i < izbira.length ; i++ )
{
 if ( izbira[i].checked )
 {
	 amount = document.getElementById('amount[' + i + ']');
	 quantity = amount.value;
	 
	 
	 // popusti
	 koliko_ima_artikel_popusta = document.getElementById('ima_popust[' + i + ']');
	 if (koliko_ima_artikel_popusta.value > 0)
	 {
		st_izbranih_artiklov_s_popustom += parseInt(quantity);
		zacasna_vsota_cen_artiklov_s_popustom += izbira[i].value * quantity;
		if (st_izbranih_artiklov_s_popustom >= 3)
		{
			popust_za_izdelke_s_popustom = zacasna_vsota_cen_artiklov_s_popustom * (koliko_ima_artikel_popusta.value/100);
			// popust_za_izdelke_s_popustom += izbira[i].value * quantity * (koliko_ima_artikel_popusta.value/100);
		}
	}
	// end popusti
	 
	 // mozilla hack - doesn't always workkk
	amount.setAttribute('autocomplete', 'off');

	if( quantity == '' ) quantity = 0;

	if( parseInt( quantity ) != quantity )
	{
		// alert('Prosim vpisite celo stevilo!');
		amount.value = 0;
		document.listForm.total.value = 0;
	}
	else if( parseInt( quantity ) < 0 )
	{
		amount.value = 0;
		document.listForm.total.value = 0;
	}			 
	else
	{
		sum += izbira[i].value * quantity;
	}
 }
}
sum = Math.round(sum*100)/100;
document.listForm.total.value = sum.toFixed(2);

popust_za_izdelke_s_popustom = Math.round(popust_za_izdelke_s_popustom*100)/100;
document.listForm.popust.value = popust_za_izdelke_s_popustom.toFixed(2);

koncnacena = sum -  popust_za_izdelke_s_popustom;
document.listForm.koncna.value = koncnacena.toFixed(2);
}