//==============================================
// 関数名 : AllHide
//----------------------------------------------
// in     :
// out    :
//==============================================
function AllHide() {
  document.getElementById('maker_id=1').style.display = 'none';
  document.getElementById('maker_id=2').style.display = 'none';
  document.getElementById('maker_id=3').style.display = 'none';
  document.getElementById('maker_id=4').style.display = 'none';
  document.getElementById('maker_id=5').style.display = 'none';
  document.getElementById('maker_id=6').style.display = 'none';
  document.getElementById('maker_id=7').style.display = 'none';
  document.getElementById('maker_id=8').style.display = 'none';
}
function SetSubMenu( idname ) {
  AllHide();
  if( idname != "" ) {
    document.getElementById(idname).style.display = 'block';
  }
}

//==============================================
// 関数名 : popUpShip
//----------------------------------------------
// in     :
// out    :
//==============================================
function popUpShip() {

  var myDate = new Date();
  var myHH = myDate.getHours();
  var myDY = myDate.getDay();

  //if((myDY > 0 && myDY < 6) && (myHH >= 9 && myHH < 17)){

    window.open("./shipment_0.html", "", "location=no, menubar=no, resizable=no, scrollbars=no, status=no, width=360, height=300");

  //}
  //else {

    //window.open("./shipment_1.html", "", "location=no, menubar=no, resizable=no, scrollbars=no, status=no, width=360, height=300");

  //}
}
