function votepopup()
{
        for (var i=0; i < document.voteform.pollitem.length; i++)
        {
                if (document.voteform.pollitem[i].checked)
                {
                        var pollitemvalue = document.voteform.pollitem[i].value;
                }
        }
        Vote = window.open('/szavazas/voks/'+document.voteform.pollid.value+'/'+pollitemvalue+".html", 'Szavaz','width=400, height=420');
}

