function showNewMsg(rfcFormatDate) {
	var target = new Date(rfcFormatDate);
	var now = new Date();
	var output = '';
	if (now.getTime() - target.getTime() < 7*24*60*60*1000) {
		output = '<span class="newIcon">NEW!</span>';
	}
	document.write(output);
}

