
//<![CDATA[
$(document).ready(function(){
  $("#cid").change(function() {
    var cid = $(this).children(":selected");
    var url = "cart_lst_"+cid.val()+".html";
    location.href=url;
  });
  
  $("#btnAdd").click(function() {
    var cd = $("#cd").val();
    var siz = "";
    var obj = $("#siz");
    if ( obj != null ) {
      siz = obj.children(":selected").val();
    }
    if ( siz == null ) siz = "0";
    var cls = "";
    obj = $("#cls");
    if ( obj != null ) {
      cls = obj.children(":selected").val();
     }
    if ( cls == null ) cls = "0";
     var cnt = $("#cnt").val();
     addItem(cd,siz,cls,cnt);
  });
  
  $("#btnyub").click(function() {
    yubsel($("#yub1").val(),$("#yub2").val());
  });
  
  cartView("");
});

function addItem(cd,siz,cls,cnt) {
  $.ajax({
    type: "POST",
    dataType: "json",
    data: {
      "mode":"add",
      "cd":cd,
      "siz":siz,
      "cls":cls,
      "cnt":cnt,
      "PHPSESSID":"1e0691a9e0261ababd6f9348fd2a5cc8"
    },
    cache: false,
    url: "http://kouzaikaori.com/cart.php",
    success: function(data) {
      cartView(data);
    }
  });
}

function updItem(key,cd,siz,cls) {
  var obj = $("#cnt_"+key);
  if ( obj == null ) return;
  if ( siz == "" ) siz = "0";
  if ( cls == "" ) cls = "0";
  var cnt = obj.val();
  $.ajax({
    type: "POST",
    dataType: "json",
    data: {
      "mode":"upd",
      "cd":cd,
      "siz":siz,
      "cls":cls,
      "cnt":cnt,
      "PHPSESSID":"1e0691a9e0261ababd6f9348fd2a5cc8"
    },
    cache: false,
    url: "http://kouzaikaori.com/cart.php",
    success: function(data) {
      cartView(data);
    }
  });
}

function delItem(cd,siz,cls) {
  if ( siz == "" ) siz = "0";
  if ( cls == "" ) cls = "0";
  $.ajax({
    type: "POST",
    dataType: "json",
    data: {
      "mode":"del",
      "cd":cd,
      "siz":siz,
      "cls":cls,
      "PHPSESSID":"1e0691a9e0261ababd6f9348fd2a5cc8"
    },
    cache: false,
    url: "http://kouzaikaori.com/cart.php",
    success: function(data) {
      cartView(data);
    }
  });
}

function cartView(msg) {
  if ( msg != "" ) {
     if ( msg.mess != "" ) {
      alert(msg.mess);
      return;
      }
  }
  $.ajax({
    type: "POST",
    dataType: "json",
    data: {
      "mode": "cart",
      "PHPSESSID":"1e0691a9e0261ababd6f9348fd2a5cc8"
    },
    cache: false,
    url: "http://kouzaikaori.com/cart.php",
    success: function(data) {
       $("#cartview").html(data.html);
     }
   });
}

function yubsel(yub1,yub2) {
  $.ajax({
    type: "POST",
    dataType: "json",
    data: {
      "mode": "yub",
      "PHPSESSID":"1e0691a9e0261ababd6f9348fd2a5cc8",
      "yub1": yub1,
      "yub2": yub2
    },
    cache: false,
    url: "http://kouzaikaori.com/order.php",
    success: function(data) {
      $("#addr").val(data.addr);
      $("#state").val(data.state);
      }
    });
}

function order(frm) {
  frm.submit();
}
//]]>
