function nuovaNotizia (thisDay)
{
	var oggi = new Date();
	var oggiJs = "" + oggi.getFullYear() + oggi.getMonth() + oggi.getDate();
		if (oggiJs == thisDay)
			{
				document.write("<img src='new.png' borser='0'>");
			};
	document.write(oggiJs);
};