document.open();
document.write(new Date().getFullYear());
document.close();



//■外部リンク
/*  ================================================================================
 *
 * このスクリプトは本文の最後に入れること
 *
================================================================================*/

/* aタグ内にclass="newwin"を指定 */



window.onload = function() {
var node_a = document.getElementsByTagName('a');
for (var i in node_a) {
if (node_a[i].className == 'newwin' | node_a[i].className == 'headerlink') {
node_a[i].onclick = function() {
window.open(this.href, '', '');
return false;
};
}
}
};
