<!--
function SetData() {
  window.opener.location.reload();
  window.close();
}

function Return() {
  window.close();
}

function PopUp() {
  subWin = window.open('deliver_time.php?fromid=PC_ORDER_CONF', 'sub', 'scrollbars=no,menubar=no,location=no,status=no,toolbar=no,width=300,height=250');
}

function PopUp2() {
  subWin = window.open('use_point.php?fromid=PC_ORDER_CONF', 'sub', 'scrollbars=no,menubar=no,location=no,status=no,toolbar=no,width=370,height=400');
}

function changeDisplay(id1, id2, id3) {
  if (document.getElementById) {
    if (document.getElementById(id1).style.display == "none" && document.getElementById(id2).style.display == "none") {
      document.getElementById(id1).style.display = "block";
      document.getElementById(id2).style.display = "block";
      document.getElementById(id3).value = "たたむ";
    } else {
      document.getElementById(id1).style.display = "none";
      document.getElementById(id2).style.display = "none";
      document.getElementById(id3).value = "詳　細";
    }
  } else if (document.all) {
    if (document.all(id1).style.display == "none" && document.all(id2).style.display == "none") {
      document.all(id1).style.display="block";
      document.all(id2).style.display="block";
      document.getElementById(id3).value = "たたむ";
    } else {
      document.all(id1).style.display="none";
      document.all(id2).style.display="none";
      document.getElementById(id3).value = "詳　細";
    }
  }
}
//-->

