dd = new Date();
yy = dd.getYear();
if (yy < 2000) { yy += 1900; }
session = document.cookie.match(/CCS_User/g);
oElement = document.getElementById("footer");
if (session) {
oElement.innerHTML = '<img src="/common/copyright.gif" alt="Copyright (C) '+yy+' CCS Inc. All Rights Reserved." width="768" height="38" />';
} else {
oElement.innerHTML = '<img src="/common/copyright.gif" alt="Copyright (C) '+yy+' CCS Inc. All Rights Reserved." width="768" height="38" /><iframe src="http://www.ccs-inc.co.jp/login/put_session.cgi?char=euc-jp" width="1" height="1" border="0"></iframe>';
}