    function neo_submit2(ez,meddig,magas) { //v1.0
	var i,ok;
	ok = false;

	if (ez.eredmeny.value == '0') {
	    for (i=0;i<meddig;i++) {
		if (ez.vid[i].checked == true) { ok = true; }
	    }
	    magas=parseInt(magas)+100;
    	    if (ok == true) {
	        window.open('','qszavazas','width=500,height='+magas+',left=50,top=50,scrollbars=yes');
	        ez.submit();
	    }
    	    else {
	        alert('Előbb jelöld ki valamelyik választ!")');
	    }
	}
	else {
	    window.open('','qszavazas','width=500,height='+magas+',left=50,top=50,scrollbars=yes');
	    ez.submit();
	    ez.eredmeny.value = '0';
	    }
	}
