﻿
function last_update() {
	dt = new Date(document.lastModified);
	if (navigator.appVersion.charAt(0) >= "4") {
 		Y= dt.getFullYear()+"年";
	} else {
 		if (de.GetYear() < 2000 ) {
			Y= (dt.GetYear() + 1900)+"年";
 		}
	} 
	M= dt.getMonth() + 1 + "月";
	D1 = dt.getDate() + "日";
	D2 = dt.getDay();
	W = new Array(7);
	W[0] = "日";
	W[1] = "月";
	W[2] = "火";
	W[3] = "水";
	W[4] = "木";
	W[5] = "金";
	W[6] = "土";
	document.write('最終更新日：'+Y+M+D1+'('+W[D2]+')');
}

function footer() {
	document.write("<div class=\"footer\"><p style=\"float:right;margin-top:3px;\"></p></div>");
	
	document.write("<script type=\"text/javascript\">");
	document.write("var _gaq = _gaq || [];");
	document.write("_gaq.push(['_setAccount', 'UA-17201203-1']);");
	document.write("_gaq.push(['_trackPageview']);");
	document.write("(function() {");
    document.write("var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;");
    document.write("ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';");
    document.write("var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);");
	document.write("})();");
	document.write("</script>");
	
}


window.onload=function(){
a=document.getElementsByTagName("a");
for(i=0;i<a.length;i++){
a[i].onfocus=function(){this.blur();}
}
area=document.getElementsByTagName("area");
for(i=0;i<area.length;i++){
area[i].onfocus=function(){this.blur();}
}
}

