// JavaScript Document// target=_blank処理 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") anchor.target = "_blank"; } } window.onload=externalLinks;  function thisYear()	{					weeks=new Array("日","月","火","水","木","金","土");					today=new Date();					y=today.getFullYear();					m=today.getMonth()+1;					d=today.getDate();					w=weeks[today.getDay()];					document.write(y);					document.close();				}								// ■ポップアップfunction figure(afile, w, h){	New_Win = window.open(afile,"win","width="+w+",height="+h+",TOP=100,LEFT=100,dependent=no,scrollbars=no,resizable=yes");	New_Win.focus();}function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}
