	function doOfertownika(id) {
            url = '/offer/additem/id/'+id;
            div = 'offer_'+id;
            div_offer = 'offer_status';
			if($('product_was_added_to_offer')!=null)
				var altProductAddedToOffer = $('product_was_added_to_offer').get('html');
				
        	new Request({
                url: url,
                method: 'get',
                onRequest: function(){
                    $(div).set('html', '<img src="/images/wait30trans.gif" alt="loading..." />');
                    $(div_offer).set('html', '<img src="/images/wait.gif" alt="loading..." />');
                },
        		onSuccess: function() {
                    $(div_offer).set('html', this.response.text);
                    $(div).set('html', '<img src="/images/myoffer_added.gif" alt="'+altProductAddedToOffer+'" />');
        		}
        	}).send();
        }
        function doKoszyka(id) {
            url = '/cart/additem/id/'+id;
            div = 'cart_'+id;
            div_cart = 'cart_status';
			if($('product_was_added_to_cart')!=null) {
                var altProductAddedToCart = $('product_was_added_to_cart').get('html');
            }
				
        	new Request({
                url: url,
                method: 'get',
                onRequest: function(){
                    $(div).set('html', '<img src="/images/wait30trans.gif" alt="loading..." />');
                    $(div_cart).set('html', '<img src="/images/wait.gif" alt="loading..." />');
                },
        		onSuccess: function() {
                    $(div_cart).set('html', this.response.text);
                    $(div).set('html', '<img src="/images/buyit_added.gif" alt="'+altProductAddedToCart+'" />');
        		}
        	}).send();
        }
