function initPoll($id, $class, $size) {
	var klas = $class;

	$id = $('#'+$id).val();
	var phpfile = '/modules.html?ajax=a&p='+$id+'&size='+$size;

	$.post(phpfile, { showPoll: "true" },function(data){
        $(klas).attr('innerHTML', data);
	});

	
	$(klas+" #radio").livequery('click', function() {
		var result = $(klas+' input[name=radio]:checked').val();
        var res_type = 'all';
        if ((res_type == 'all') || (res_type == 'moski') || (res_type == 'zenske')) {
    		if (result == undefined) {
    			$.post(phpfile, { showPoll: "true" },function(data){
					$(klas).attr('innerHTML', data);
    			});
	            return false;
            } else {
                $.post(phpfile, { showPoll: "false", rezultati: "true", result: ""+ $('input[name=radio]:checked').val() +"", submit: res_type },function(data){
                    $(klas).attr('innerHTML', data);
    			});
    			return false;
    		}
   
        } else {
            return true;
        }       
    });
}