function ccBM_dy_calc() { var f = document.forms.ccBM_dogYrsForm; var dh = f.dh.options[f.dh.selectedIndex].value; var units = f.units.options[f.units.selectedIndex].value; var n = f.nval.value; if(units=='m') { n=n/12; } if(!ccBM_is_n(n)) { alert("Molimo Vas da unesite važeći broj godina ili meseci."); return false; } var txt, y; if(dh=='dog') { y = ( (n>=2) ? (21+((n-2)*4)) : (n*10.5)); txt = 'Vaš pas ima '+(Math.round(y*10)/10)+' ljudskih godina.'; } else { y = ( (n>=21) ? ((n-21)/4+2) : (n/10.5) ); txt = 'Vi imate '+(Math.round(y*10)/10)+' psećih godina.'; } document.getElementById('ccBM_lyr_dog_yrs').innerHTML = txt; } function ccBM_is_n(n) { if( isNaN(n) || n==null || n.length==0 ) { return false; } n=n+""; if( n.search(/\s+/)!=-1 ) { return false; } return true; } if( document.layers && !document.getElementById ) { document.write( 'Da biste izračunali godine Vašeg psa morate koristiti noviji browser.

'); } else { document.write( '

', '
', 'Izračunajte koliko ljudskih godina ima Vaš pas / i obrnuto
', '
', ' ', '
', '', '
Vaš pas ima ___ ljudskih godina.
', '
', '
' ); }