// JavaScript Document

/* --------------------------------------------------
【 汎用コピーライト関数 】Author (C) 2005 h.sogabe 
yy ：開始年度 
-------------------------------------------------- */

function ssSig(yy){
 var now = new Date(); 
     now = now.getYear() % 100 + 2000;
 var str = '<A href="/wp-admin/" >Copyright &copy; ';
 str += ((now == yy ) ? yy : yy + ' - ' + now);
 str += ' Izuhei Foods Corporation. All Rights Reserved.</A>';
 document.write(str);
} 

