/*======================================================================*/
/*                                                                      */
/*======================================================================*/
function textOnOff(tag) {
  stat = document.getElementById(tag).style.display;
  if( stat == "block" || stat == "" ){
    document.getElementById(tag).style.display = "none";
  }else{
    document.getElementById(tag).style.display = "block";
  }
}

function naviOn(tag) {
  document.getElementById(tag).style.color           = "white";
  document.getElementById(tag).style.backgroundColor = "blue";
  document.getElementById(tag).style.textDecoration  = "underline";
}
function naviOff(tag) {
  document.getElementById(tag).style.color           = "#5555ff";
  document.getElementById(tag).style.backgroundColor = "";
  document.getElementById(tag).style.textDecoration  = "underline";
}

function selTabOn(tag) {
  document.getElementById(tag).style.color           = "white";
  document.getElementById(tag).style.backgroundColor = "blue";
  document.getElementById(tag).style.textDecoration  = "underline";
  chgCur(tag,"pointer");
}
function selTabOff(tag) {
  document.getElementById(tag).style.color           = "#eeeeee";
  document.getElementById(tag).style.backgroundColor = "";
  document.getElementById(tag).style.textDecoration  = "underline";
  chgCur(tag,"auto");
}

function setPict(tag,pic) {
  bg = "url(" + pic + ")";
  document.getElementById(tag).style.backgroundImage = bg;
  document.getElementById(tag).style.backgroundColor = "black";
  document.getElementById(tag).style.backgroundRepeat = "no-repeat";
  document.getElementById(tag).style.backgroundPosition = "50%";
}

function chgCur(tag,cur) {
  document.getElementById(tag).style.cursor = cur;
}

function lastUpdate() {
  myDate = new Date(document.lastModified);
  y = myDate.getFullYear();
  m = myDate.getMonth() + 1;
  d = myDate.getDate();
  if( m < 10 ) { m = "0" + m; }
  if( d < 10 ) { d = "0" + d ;}
  document.write("XV“úF",y,"-",m,"-",d);
}

function tabChg(tag0,tag1,tag2) {
    document.getElementById(tag0).style.display = "block";
    document.getElementById(tag1).style.display = "none";
    document.getElementById(tag2).style.display = "none";
}


