with(Math) {
	info = "Io su internet"
	oggi = new Date() ;
	giorno = oggi.getDate();
	anno = oggi.getYear();
	mese = oggi.getMonth();

	        if (anno<1000) anno=anno+1900;

		if (mese==2&giorno==14) info = "Informazione: <STRONG><BLINK>Oggi è il mio compleanno!</"+"BLINK></"+"STRONG>";
		if (mese==11&giorno==25) info = "<STRONG>Buon Natale!</"+"STRONG>";
		if (mese==0&giorno==1) info = "<STRONG>Buon " + anno + "!!</"+"STRONG>";
		if (mese==7&giorno==15) info = "<STRONG>Buon ferragosto</"+"STRONG>";
		if (mese==4&giorno==1) info = "<STRONG>Buona festa dei lavoratori</"+"STRONG>";


	document.writeln(info);
	}