  function delBuy(rownum){
    pid = $('#pdt_no'+rownum).val();
	//alert('=='+pid+'==');
	//return false;
    $.ajax({
      type: "POST",
      url: "./ajax_lib/bebuy.alax.php",
      data: {rid:pid, rtnurl:$('input[name=rtnurl]').val(), type:"del"},
      success:function(rsp){
      //alert(rsp);
        if(rsp == "y"){
          alert("刪除成功");
          window.location.replace('http://events.fashionguide.com.tw/2009/09/annualsale/mustbuylist.php');
		  //$('#cart'+no).fadeOut();
        }else{
          alert("請先登入");
          window.location.replace(rsp);
        }
      }
    });
    
  }

  function addBuyListNew(pid){
    //alert(pid+'=='+$('input[name=rtnurl]').val()+'==');
    
    $.ajax({
      type: "POST",
      url: "./ajax_lib/bebuy.alax.php",
      data: {rid:pid, rtnurl:$('input[name=rtnurl]').val(), type:"add"},
      success:function(rsp){
      //alert(rsp);
        if(rsp == "y"){
          alert("加入成功");
        }else if(rsp == "n"){
          alert("已經加入囉");
        }else{
          alert("請先登入");
		  //alert(rsp);
          window.location.replace(rsp);
          //history.back();
        }
      }
    });
  }

