
//Open blank window
window.onload = function() {
	
	//class blankで新しいウィンドウ
	var node_a = document.getElementsByTagName('a');
	for (var i in node_a) {
		if (node_a[i].className == 'blank') {
			node_a[i].onclick = function() {
			window.open(this.href, '', '');
			return false;
			};
		};
	};
	
	//ページスクロール
	tinyScrolling.init();
	
  //文字サイズ変更
  var cookie = readCookie("style");
  var title = cookie ? cookie : getPreferredStyleSheet();
  setActiveStyleSheet(title);

  var title = getActiveStyleSheet();
  createCookie("style", title, 365);
};


var tinyScrolling = {
	speed : 25,      //set here the scroll speed: when this value increase, the speed decrease. 
	maxStep: 150,	 //set here the "uniform motion" step for long distances
	brakeK: 3,		 //set here the coefficient of slowing down
	hash:null,		
	currentBlock:null,
	requestedY:0,
	init: function() {
			var lnks = document.getElementsByTagName('a');   
			for(var i = 0, lnk; lnk = lnks[i]; i++) {   
				if ((lnk.href && lnk.href.indexOf('#') != -1) &&  ( (lnk.pathname == location.pathname) ||
				('/'+lnk.pathname == location.pathname) ) && (lnk.search == location.search)) {  
				lnk.onclick = tinyScrolling.initScroll;   		
				}   
			}
	},
	getElementYpos: function(el){
			var y = 0;
			while(el.offsetParent){  
				y += el.offsetTop    
				el = el.offsetParent;
			}	return y;
	},		
	getScrollTop: function(){
			if(document.all) return (document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop;
			else return window.pageYOffset;   
	},	
	getWindowHeight: function(){
			if (window.innerHeight)	return window.innerHeight;
			if(document.documentElement && document.documentElement.clientHeight) return document.documentElement.clientHeight;
	},
	getDocumentHeight: function(){
			if (document.height) return document.height;
			if(document.body.offsetHeight) return document.body.offsetHeight;
	},
	initScroll: function(e){
			var targ;  
			if (!e) var e = window.event;
			if (e.target) targ = e.target;
			else if (e.srcElement) targ = e.srcElement;   
			tinyScrolling.hash = targ.href.substr(targ.href.indexOf('#')+1,targ.href.length); 
			tinyScrolling.currentBlock = document.getElementById(tinyScrolling.hash);   
			if(!tinyScrolling.currentBlock) return;
			tinyScrolling.requestedY = tinyScrolling.getElementYpos(tinyScrolling.currentBlock); 
			tinyScrolling.scroll();  
			return false;
	},
	scroll: function(){
			var top  = tinyScrolling.getScrollTop();
			if(tinyScrolling.requestedY > top) {  
				var endDistance = Math.round((tinyScrolling.getDocumentHeight() - (top + tinyScrolling.getWindowHeight())) / tinyScrolling.brakeK);
				endDistance = Math.min(Math.round((tinyScrolling.requestedY-top)/ tinyScrolling.brakeK), endDistance);
				var offset = Math.max(2, Math.min(endDistance, tinyScrolling.maxStep));
			} else { var offset = - Math.min(Math.abs(Math.round((tinyScrolling.requestedY-top)/ tinyScrolling.brakeK)), tinyScrolling.maxStep);
			} window.scrollTo(0, top + offset);  
			if(Math.abs(top-tinyScrolling.requestedY) <= 1 || tinyScrolling.getScrollTop() == top) {
				window.scrollTo(0, tinyScrolling.requestedY);
				if(!document.all || window.opera) location.hash = tinyScrolling.hash;
				tinyScrolling.hash = null;
			} else 	setTimeout(tinyScrolling.scroll,tinyScrolling.speed);
	}		
}




//labelタグ内の画像クリック可能（ie6ie7）
var clickFormLabel = function(label) {
  var e = null;
  try {
    e = document.getElementById(label.htmlFor);
  } catch (exception) {}
  if (e != null) {
    if (e.tagName == "INPUT") {
      switch (e.type) {
      case "checkbox":
        e.checked = !e.checked;
        break;
      case "radio":
        e.checked = true;
        break;
      default:
        e.focus();
        break;
      }
    } else {
      e.focus();
    }
  }
  return false;
};



//要素の開閉
var is_closed = [];
function open_close( id ) {
	if (is_closed[id]) {
		document.getElementById( id ).style.display = 'none';
		is_closed[id] = false;
	}else{
		document.getElementById( id ).style.display = 'block';
		is_closed[id] = true;
	}
}

/*
function showopBm(){
    document.getElementById('myBm01').style.display = "none";
    document.getElementById('myBm02').style.display = "block";
}
function hideopBm(){
    document.getElementById('myBm01').style.display = "block";
    document.getElementById('myBm02').style.display = "none";
}
*/

//input文字の非表示
function kwdComment(obj){
if (obj.value == obj.defaultValue){
  obj.value = "";
  obj.style.color = "#666";
}
}
function check_keyword() {
  if (document.search_form.keyword.value == "キーワードを入れてください"){
    document.search_form.keyword.value = "";
  }
}


// 1クリックアクション回避

function showSWF( pass, width, height, id){
	var show = ""
	show+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'"
	show+=" codebase='https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0'"
	show+=" width=" + width
	show+=" height=" + height
	show+=" title=" + id
	show+=" align='middle'>\n"
	show+="<param name='allowScriptAccess' value='sameDomain' />\n"
	show+="<param name='movie' value=" + pass + " />\n"
	show+="<param name='quality' value='high' />\n"
	show+="<param name='scale' value='noscale' />\n"
	show+="<param name='bgcolor' value='#ffffff' />\n"
	show+="<embed src=" + pass
	show+=" quality='high' scale='noscale' salign='t' bgcolor='#ffffff'"
	show+=" width=" + width + " height=" + height
	show+=" name=" + id + " align='middle' allowScriptAccess='sameDomain'"
	show+=" type='application/x-shockwave-flash' pluginspage='https://www.macromedia.com/go/getflashplayer' />\n"
	show+="<noembed></noembed>\n"
	show+="</object>";
	document.write(show);
}


//フォントサイズ

function setActiveStyleSheet(title) {
  var i, a, main;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
      a.disabled = true;
      if(a.getAttribute("title") == title) a.disabled = false;
    }
  }
}

function getActiveStyleSheet() {
  var i, a;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title");
  }
  return null;
}

function getPreferredStyleSheet() {
  var i, a;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1
       && a.getAttribute("rel").indexOf("alt") == -1
       && a.getAttribute("title")
       ) return a.getAttribute("title");
  }
  return null;
}

function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else expires = "";
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
  }
  return null;
}


var cookie = readCookie("style");
var title = cookie ? cookie : getPreferredStyleSheet();
setActiveStyleSheet(title);


//別ページ

function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") &&
((anchor.getAttribute("rel") == "external nofollow") || (anchor.getAttribute("rel") == "nofollow external") || (anchor.getAttribute("rel") == "external")))
anchor.target = "_blank";
}
}
window.onload = externalLinks;

/*heightLine
--------------------------------------------------------------------------*/
function heightLine(){;this.className="heightLine";this.parentClassName="heightLineParent"
reg=new RegExp(this.className+"-([a-zA-Z0-9-_]+)","i");objCN=new Array();var objAll=document.getElementsByTagName?document.getElementsByTagName("*"):document.all;for(var i=0;i<objAll.length;i++){var eltClass=objAll[i].className.split(/\s+/);for(var j=0;j<eltClass.length;j++){if(eltClass[j]==this.className){if(!objCN["main CN"])objCN["main CN"]=new Array();objCN["main CN"].push(objAll[i]);break;}else if(eltClass[j]==this.parentClassName){if(!objCN["parent CN"])objCN["parent CN"]=new Array();objCN["parent CN"].push(objAll[i]);break;}else if(eltClass[j].match(reg)){var OCN=eltClass[j].match(reg)
if(!objCN[OCN])objCN[OCN]=new Array();objCN[OCN].push(objAll[i]);break;}}}
var e=document.createElement("div");var s=document.createTextNode("S");e.appendChild(s);e.style.visibility="hidden"
e.style.position="absolute"
e.style.top="0"
document.body.appendChild(e);var defHeight=e.offsetHeight;changeBoxSize=function(){for(var key in objCN){if(objCN.hasOwnProperty(key)){if(key=="parent CN"){for(var i=0;i<objCN[key].length;i++){var max_height=0;var CCN=objCN[key][i].childNodes;for(var j=0;j<CCN.length;j++){if(CCN[j]&&CCN[j].nodeType==1){CCN[j].style.height="auto";max_height=max_height>CCN[j].offsetHeight?max_height:CCN[j].offsetHeight;}}
for(var j=0;j<CCN.length;j++){if(CCN[j].style){var stylea=CCN[j].currentStyle||document.defaultView.getComputedStyle(CCN[j],'');var newheight=max_height;if(stylea.paddingTop)newheight-=stylea.paddingTop.replace("px","");if(stylea.paddingBottom)newheight-=stylea.paddingBottom.replace("px","");if(stylea.borderTopWidth&&stylea.borderTopWidth!="medium")newheight-=stylea.borderTopWidth.replace("px","");if(stylea.borderBottomWidth&&stylea.borderBottomWidth!="medium")newheight-=stylea.borderBottomWidth.replace("px","");CCN[j].style.height=newheight+"px";}}}}else{var max_height=0;for(var i=0;i<objCN[key].length;i++){objCN[key][i].style.height="auto";max_height=max_height>objCN[key][i].offsetHeight?max_height:objCN[key][i].offsetHeight;}
for(var i=0;i<objCN[key].length;i++){if(objCN[key][i].style){var stylea=objCN[key][i].currentStyle||document.defaultView.getComputedStyle(objCN[key][i],'');var newheight=max_height;if(stylea.paddingTop)newheight-=stylea.paddingTop.replace("px","");if(stylea.paddingBottom)newheight-=stylea.paddingBottom.replace("px","");if(stylea.borderTopWidth&&stylea.borderTopWidth!="medium")newheight-=stylea.borderTopWidth.replace("px","")
if(stylea.borderBottomWidth&&stylea.borderBottomWidth!="medium")newheight-=stylea.borderBottomWidth.replace("px","");objCN[key][i].style.height=newheight+"px";}}}}}}
checkBoxSize=function(){if(defHeight!=e.offsetHeight){changeBoxSize();defHeight=e.offsetHeight;}}
changeBoxSize();setInterval(checkBoxSize,1000)
window.onresize=changeBoxSize;}
function addEvent(elm,listener,fn){try{elm.addEventListener(listener,fn,false);}catch(e){elm.attachEvent("on"+listener,fn);}}
addEvent(window,"load",heightLine);


function heightLine2(){;this.className="heightLine2";this.parentClassName="heightLine2Parent"
reg=new RegExp(this.className+"-([a-zA-Z0-9-_]+)","i");objCN=new Array();var objAll=document.getElementsByTagName?document.getElementsByTagName("*"):document.all;for(var i=0;i<objAll.length;i++){var eltClass=objAll[i].className.split(/\s+/);for(var j=0;j<eltClass.length;j++){if(eltClass[j]==this.className){if(!objCN["main CN"])objCN["main CN"]=new Array();objCN["main CN"].push(objAll[i]);break;}else if(eltClass[j]==this.parentClassName){if(!objCN["parent CN"])objCN["parent CN"]=new Array();objCN["parent CN"].push(objAll[i]);break;}else if(eltClass[j].match(reg)){var OCN=eltClass[j].match(reg)
if(!objCN[OCN])objCN[OCN]=new Array();objCN[OCN].push(objAll[i]);break;}}}
var e=document.createElement("div");var s=document.createTextNode("S");e.appendChild(s);e.style.visibility="hidden"
e.style.position="absolute"
e.style.top="0"
document.body.appendChild(e);var defHeight=e.offsetHeight;changeBoxSize=function(){for(var key in objCN){if(objCN.hasOwnProperty(key)){if(key=="parent CN"){for(var i=0;i<objCN[key].length;i++){var max_height=0;var CCN=objCN[key][i].childNodes;for(var j=0;j<CCN.length;j++){if(CCN[j]&&CCN[j].nodeType==1){CCN[j].style.height="auto";max_height=max_height>CCN[j].offsetHeight?max_height:CCN[j].offsetHeight;}}
for(var j=0;j<CCN.length;j++){if(CCN[j].style){var stylea=CCN[j].currentStyle||document.defaultView.getComputedStyle(CCN[j],'');var newheight=max_height;if(stylea.paddingTop)newheight-=stylea.paddingTop.replace("px","");if(stylea.paddingBottom)newheight-=stylea.paddingBottom.replace("px","");if(stylea.borderTopWidth&&stylea.borderTopWidth!="medium")newheight-=stylea.borderTopWidth.replace("px","");if(stylea.borderBottomWidth&&stylea.borderBottomWidth!="medium")newheight-=stylea.borderBottomWidth.replace("px","");CCN[j].style.height=newheight+"px";}}}}else{var max_height=0;for(var i=0;i<objCN[key].length;i++){objCN[key][i].style.height="auto";max_height=max_height>objCN[key][i].offsetHeight?max_height:objCN[key][i].offsetHeight;}
for(var i=0;i<objCN[key].length;i++){if(objCN[key][i].style){var stylea=objCN[key][i].currentStyle||document.defaultView.getComputedStyle(objCN[key][i],'');var newheight=max_height;if(stylea.paddingTop)newheight-=stylea.paddingTop.replace("px","");if(stylea.paddingBottom)newheight-=stylea.paddingBottom.replace("px","");if(stylea.borderTopWidth&&stylea.borderTopWidth!="medium")newheight-=stylea.borderTopWidth.replace("px","")
if(stylea.borderBottomWidth&&stylea.borderBottomWidth!="medium")newheight-=stylea.borderBottomWidth.replace("px","");objCN[key][i].style.height=newheight+"px";}}}}}}
checkBoxSize=function(){if(defHeight!=e.offsetHeight){changeBoxSize();defHeight=e.offsetHeight;}}
changeBoxSize();setInterval(checkBoxSize,1000)
window.onresize=changeBoxSize;}
function addEvent(elm,listener,fn){try{elm.addEventListener(listener,fn,false);}catch(e){elm.attachEvent("on"+listener,fn);}}
addEvent(window,"load",heightLine2); 



