<!--
// セルをクリックしたときにセル内のアンカーをクリック
// onclick/onkeypress に指定
// ex) actItemClick(this);
function actItemClick(_target) {
 if (!document.styleSheets) return;
 if (window.event) {
//  if (event.srcElement.tagName == "TD") _target.children.tags("A")[0].click();
  if (event.srcElement.tagName == "TD") _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].click();
 } else {
  location.href = _target.getElementsByTagName("A")[0].href;
 }
}
// フォーカスしたときに色を変化/マウスカーソルを変化
// onmouseover/onfocus に指定
// ex) actItemFocus(this);
function actItemFocus(_target) {
 if (!document.styleSheets) return;
 var _bgColor = "#93C6E0";
 if (window.event) {
  if (!_target.contains(event.fromElement)) {
   _target.style.cursor = "hand";
   _target.style.backgroundColor = _bgColor;
   _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
  }
 } else {
  _target.style.cursor = "pointer";
  _target.style.backgroundColor = _bgColor;
  _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
 }
}
function actItemFocus2(_target) {
 if (!document.styleSheets) return;
 var _bgColor = "#eeeeee";
 if (window.event) {
  if (!_target.contains(event.fromElement)) {
   _target.style.cursor = "hand";
   _target.style.backgroundColor = _bgColor;
   _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
  }
 } else {
  _target.style.cursor = "pointer";
  _target.style.backgroundColor = _bgColor;
  _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
 }
}
function actItemFocus3(_target) {
 if (!document.styleSheets) return;
 var _bgColor = "#ffffff";
 if (window.event) {
  if (!_target.contains(event.fromElement)) {
   _target.style.cursor = "hand";
   _target.style.backgroundColor = _bgColor;
   _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
  }
 } else {
  _target.style.cursor = "pointer";
  _target.style.backgroundColor = _bgColor;
  _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
 }
}
// フォーカスが離れたときに色を戻す/マウスカーソルを戻す
// onmouseout/onblur に指定
// ex) actItemBlur(this);
function actItemBlur(_target) {
 var _bgColor = "#3399cc";
 if (!document.styleSheets) return;
 if (window.event) {
  if (!_target.contains(event.toElement)) {
   _target.style.cursor = "default";
   _target.style.backgroundColor = _bgColor;
   _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
  }
 } else {
  _target.style.cursor = "default";
  _target.style.backgroundColor = _bgColor;
  _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
 }
}
function actItemBlur2(_target) {
 var _bgColor = "#eeeeee";
 if (!document.styleSheets) return;
 if (window.event) {
  if (!_target.contains(event.toElement)) {
   _target.style.cursor = "default";
   _target.style.backgroundColor = _bgColor;
   _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
  }
 } else {
  _target.style.cursor = "default";
  _target.style.backgroundColor = _bgColor;
  _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
 }
}
function actItemBlur3(_target) {
 var _bgColor = "#ffffff";
 if (!document.styleSheets) return;
 if (window.event) {
  if (!_target.contains(event.toElement)) {
   _target.style.cursor = "default";
   _target.style.backgroundColor = _bgColor;
   _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
  }
 } else {
  _target.style.cursor = "default";
  _target.style.backgroundColor = _bgColor;
  _target.children.tags("TABLE").item(0).getElementsByTagName("A")[0].style.textDecoration = "underline";
 }
}
// -->
