function sendToBasket(id,type) {
        var options = {target:'#ajaxbasket',  timeout:   3000};
        $.blockUI({ message:$('#plist_prodmessage_nnn'), css: { cursor:'pointer' }});
		setTimeout(jQuery.unblockUI, 5000); 
        $('#'+type+'_products_'+id).ajaxSubmit(options);
      }
	  $(document).ready(function(){
			  $('#plist_yes_nnn').click(function() {  document.location = '/index.php?action=showbasket&p=shop';$.unblockUI();  return false; });
			  $('#plist_no_nnn').click(function() { $.unblockUI();  return false; });
	  }); 

