function openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
};


function deleteCartItem(itemId) {
	new Ajax.Request('/loja/cesto/delete', {
	  method: 'post',
	  postBody: 'id=' + itemId, 
	  onSuccess: function(transport) {
	    //var notice = $(itemId);
	    //notice.update('Item apagado.').setStyle({ background: '#dfd' });
	    $(itemId).up(1).remove();

	  },
	  onFailure: function() { 
	  	console.log('Something went wrong...') ;
	  }
	});
};



document.observe("dom:loaded", function() {
	
	$$('.r').each( function(e) {
			
		e.observe("click", function(f) {
		
			deleteCartItem( e.identify() );

		});
	
	});

});