function delconfirm() {
  if ( confirm("削除して良いですか？") ) {
    return true;
  } else {
    return false;
  }
}

function postconfirm() {
  if ( confirm("送信して良いですか？") ) {
    return true;
  } else {
    return false;
  }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

