﻿<!--
	
	function anketaGlasaj()
	{
		//window.location = "http://www.google.com/";    	
		var x=document.getElementsByName("odg")
        //alert(x.length + " elements!")
		var link = '';
        var k;
        var i;
        for (k in x)
            {
                i = parseInt(k) + 1;
                if (x[k].checked)
                    link = "ank.php?odg=" + i;

            }
        /*
		if (x[0].checked)
			link = "ank.php?odg=1";
		else if (x[1].checked)
			link = "ank.php?odg=2";
		else if (x[2].checked)
			link = "ank.php?odg=3";
		else
		{
			alert('Morate izabrati jedan odgovor ');
			return;
		}
		*/
       if (link == '')
       {
			alert('Morate izabrati jedan odgovor ');
			return;
		}

       alert(link);
		//window.location = link;
	}
	
 

	
	
//-->
