
    function yoda3_click_banner(id,hash,clickurl,redirurl,rndid){
        $.get(clickurl+"?id="+id+"&hash="+hash, function(data) {
          res = $.parseJSON(data);
          $('#result_'+id).html(data);
          if( res.ok==1 ){
              $("#banner_box_"+res.id).remove(); // hide clicked banner
               if( res.complete==1 ){
                    yoda3_completed(redirurl,res.id,rndid); // display finish
                }else{
                    $("#banner_box_result_"+res.id).show(); // display afterclick
                    var resMsg  = res.stats.done+" z "+res.stats.all;
                    $("#banner_box_result_"+res.id+" span.znalezione").html(resMsg);
                }
          }

        });
    }
    function yoda3_completed(url,id,rndid){
        //$("#banner_box_completed").show();
        $("#banner_box_completed_"+id+'_'+rndid).show();
        //document.location.href=url; // redirect to form or show msg        
    }
    function yoda3_login_popup(){
                $dialog = $('<div></div>').load('<?=DOC_ROOT?>/yoda3_login.php?form=1'+ " #loginBox").dialog({
					autoOpen: false,
					title: "Logowanie",
					width: 350,
					height: 250
				});
                $dialog.dialog('open');
    }
    

