

//ウィンドウを開く
function opennewwin(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

// クリックして開閉するブロック（+-アイコン付き）
function displayModeIcon(target,linkId){
	var targetBlock=document.getElementById(target);
	if(targetBlock.style.display=='none'){
		targetBlock.style.display='block';
	}else{
		targetBlock.style.display='none';
	}
	var targetLink=document.getElementById(linkId);
	if(targetLink.className=="plus"){
		targetLink.className="minus";
	}
	else{
		targetLink.className="plus";
	}
}

// クリックして開閉するブロック（アイコン無し）
function displayMode(target){
    var targetBlock=document.getElementById(target);
    if(targetBlock.style.display=='block'){
        targetBlock.style.display='none';
    }else{
        targetBlock.style.display='block';
    }
}





