﻿/* 年末年始の挨拶を出力するスクリプト（画像） */
/* 設定 */
mesImg1			=	"images/oldyear.gif";			/* 年末用画像 */
mesImg1width	=	"538";				/* 年末用画像幅 */
mesImg1height	=	"120";				/* 年末用画像高さ */
mesImg1alt		=	"今年もお世話になりました";	/* 年末用画像ALTテキスト */

mesImg2			=	"images/newyear.gif";			/* 年始用画像 */
mesImg2width	=	"538";				/* 年始用画像幅 */
mesImg2height	=	"120";				/* 年始用画像高さ */
mesImg2alt		=	"明けましておめでとうございます";	/* 年始用画像ALTテキスト */

yearEndBigin	=	28;					/* 年末挨拶を表示し始める日（１２月○日）*/
NewYearEnd		=	15;				/* 年始挨拶の表示終了日（１月○日） */


/* 処理 */

myDate = new Date();
myMonth = myDate.getMonth();
myMonth++;
myDay = myDate.getDate();

if( myMonth==1 && myDay<=NewYearEnd ) {
	/* 年始の処理 */
	document.write( "<img src=",mesImg2," width=",mesImg2width," height=",mesImg2height," alt=",mesImg2alt,"><br />" );
}
else if( myMonth==12 && myDay>=yearEndBigin ) {
	/* 年末の処理 */
	document.write( "<img src=",mesImg1," width=",mesImg1width," height=",mesImg1height," alt=",mesImg1alt,"><br />" );
}
