function openwin(clocation, wNo){
var wName;
wName = 'win' + 'wNo';
 var scriptwin = window.open(clocation, wName,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=650,height=660');
scriptwin.focus();
}

function guide_openwin(clocation, wNo){
var wName;
wName = 'win' + 'wNo';
 var scriptwin = window.open(clocation, wName,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=580,height=660');
scriptwin.focus();
}


/* 以下は折りたたみのスクリプト1 */

function expand(URI,SUB,EXP){
  if(document.getElementById) {
    if(document.getElementById(SUB).style.display) {
      if(URI != 0) {
        document.getElementById(SUB).style.display = "block";
        document.getElementById(EXP).style.display = "none";
      } else {
        document.getElementById(SUB).style.display = "none";
        document.getElementById(EXP).style.display = "block";
      }
    } else {
      location.href = URI;
      return true;
    }
  } else {
    location.href = URI;
    return true;
  }
}

