function provera_korpe_kolicina(theForm) 
  {  
  
		if (theForm.qty.value.length == 0)
		{
			alert("Unod kolicine je obavezan!");
			theForm.qty.focus();
			return false;
		}  
		if ( !isInteger(theForm.qty.value) )
		{
			alert("Kolicina mora biti broj!");
			theForm.qty.focus();
			return false;
		}
		if (theForm.qty.value == 0)
		{
			alert("Kolicina mora biti broj > 0!");
			theForm.qty.focus();
			return false;
		}

    return true;
  }

