window.onerror=null;

/*** 画像自動切替 ***/
function chg_photo()
{
	var dat = new Date();
	var mon = dat.getMonth() + 1;
	
	if(mon < 10)	n = "0" + mon;
	else		n = mon;
	
	img = "photo" + n + ".gif";
	
	document.write("<IMG SRC='./gif/" + img + "' WIDTH='200' HEIGHT='80'>");
}

/*** [NEW]画像表示 ***/
function dispNew(myDate)
{
	myToday = new Date();
	newDate = new Date(myDate);
	dd = newDate.getMonth();
	newDate.setMonth(dd+3);
	
	if(newDate > myToday){
		document.write("\<IMG SRC=\"../gif/new.gif\" WIDTH=26 HEIGHT=13 BORDER=0\>");
	}
}

