/*-------------------------------------------------------
 * ForWarD Website Javascripts
 * Type: for general
 * Last Modified 2007-11-27 by Ryuji Higashihara
 *-------------------------------------------------------*/


document.write("<address>&copy;2004-2008 ForWarD All Right Resarved.<br />Contact to : <a href=\"mailto:info@webdirector.jp\">info@webdirector.jp</a>&nbsp;/&nbsp;Last Modified : ");

fuLast = document.lastModified;
now = new Date(fuLast);
fuYear = now.getYear();
if(fuYear<2000){fuYear=fuYear+1900};//ネスケ対策
fuMonth = now.getMonth() + 1;
fuDate = now.getDate();
if (fuMonth < 10) {fuMonth = "0" + fuMonth};
if (fuDate < 10) {fuDate = "0" + fuDate};
fuStr = fuYear + "-" + fuMonth + "-" + fuDate + " by R.H.</address>";

document.write( fuStr );//年月日表示

