<!--
function berza(id)
{
	
    	var h1 = document.getElementById('dobitnici');
    	var h2 = document.getElementById('gubitnici');
    	var h3 = document.getElementById('promet');
    	
    	h1.style.display = 'none';    	
    	h2.style.display = 'none';    	
    	h3.style.display = 'none';
    	
    	if (id == 1)    	
    		h1.style.display = '';
    	if (id == 2)    	
    		h2.style.display = '';
    	if (id == 3)    	
    		h3.style.display = '';
}

function belex(id)
{
	
    	var h1 = document.getElementById('belex15');
    	var h2 = document.getElementById('belexline');
    	
    	
    	h1.style.display = 'none';    	
    	h2.style.display = 'none';    	
    	
    	
    	if (id == 1)    	
    		h1.style.display = '';
    	if (id == 2)    	
    		h2.style.display = '';
    	
}
	
function DoIt()
{
   var odnos = document.konvertor.iz.value / document.konvertor.u.value;
   var rezultat = odnos * document.konvertor.iznos.value;
   document.konvertor.result.value = Math.round(rezultat * 100) / 100;
}
 
 

	
	
//-->
