
   var total_selected = 2;

   function rememberAdd(img, caID) {

      img.src == "http://" + document.domain + "/templates/skelbiam_eu/images/empty.gif" ? rememberedAd = true : rememberedAd = false;

      if (rememberedAd) {

      img.src = "/templates/skelbiam_eu/images/loading_animation.gif";

         new Ajax.Request('/selectadd.php?act=save&id=' + img.name + '&cat=' + caID, {
            method:'post',
            onSuccess: function(transport, caID) {
               var response = transport.responseText || "no response text";
               img.src = "/templates/skelbiam_eu/images/check.gif";
               change_totalSel (transport.responseText);
            },
            onFailure: function() {
               alert('Something went wrong...')
            }
         });

      } else {

        img.src = "/templates/skelbiam_eu/images/loading_animation.gif";

         new Ajax.Request('/selectadd.php?act=remove&id=' + img.name + '&cat=' + caID, {
            method:'post',
            onSuccess: function(transport, caID) {
               var response = transport.responseText || "no response text";
               img.src = "/templates/skelbiam_eu/images/empty.gif";
               change_totalSel (transport.responseText);
            },
            onFailure: function() {
               alert('Something went wrong...')
            }
         });

      }

   }
   
   function checkAdd(img) {
   if(img.src=="http://" + document.domain + "/templates/skelbiam_eu/images/empty.gif") {
      new Ajax.Request('/selectadd.php?act=list&id=' + img.name, { 
       method:'post',
       onSuccess: function(transport) {
       if (transport.responseText==1) { img.src = "/templates/skelbiam_eu/images/check.gif"; } 
       },
       onFailure: function() {
    		//alert('Something went wrong...')
	}
    }); 
											    }
    	   }
   

   function change_totalSel (tot) {
      //document.getElementById('total_sel').innerHTML = tot.substr(0, tot.length - 1);
      tot = tot-1;
      if (tot>0) {
      document.getElementById('total_sel').innerHTML = "<a target=\"_blank\" href=\"/spausdinti.html\" class=\"cat_up\">Spausdinti</a> - <a href=\"/pazymeti_skelbimai.html\" class=\"cat_up\">Rodyti pa&#382;ym&#279;tus skelbimus (" + tot + ")</a> - <a href=\"#\" onclick=\"clear_sel();\" class=\"cat_up\">I&#353;valyti</a>";
		 } else { 
			 document.getElementById('total_sel').innerHTML = "";
			}
   }

   function clear_sel() {

      new Ajax.Request('/selectadd.php?act=clear', {
         method:'post',
         onSuccess: function(transport) {
            document.location = document.location;
	    location.reload();
         },
         onLoading: function() {
            img.src = "/templates/skelbiam_eu/images/loading_animation.gif";
         },
         onFailure: function() {
            alert('Something went wrong...')
         }
      });

   }
