// Grazie per aver visualizzato il codice sorgente: Francesco Lazzarini  franco@giosycento.it

var now = new Date();
var month = now.getMonth()+1;
var date = now.getDate();





if (month==1){ 
	document.write(" Appuntamenti di:<BR> <B>Gennaio 2012 </B>" );
	}
if (month==2){
	document.write(" Appuntamenti di:<BR> <B>Febbraio 2012 </B>" );
	}
if (month==3){ 
	document.write(" Appuntamenti di:<BR> <B>Marzo 2012 </B>" );
	}
if (month==4){ 
	document.write(" Appuntamenti di:<BR> <B>Aprile 2012 </B>" );
	}
if (month==5){ 
	document.write(" Appuntamenti di:<BR> <B>Maggio 2012 </B>" );
	}
if (month==6){ 
	document.write(" Appuntamenti di:<BR> <B>Giugno 2012 </B>" );
	}
if (month==7){ 
	document.write(" Appuntamenti di:<BR> <B>Luglio 2012 </B>" );
	}
if (month==8){ 
	document.write(" Appuntamenti di:<BR> <B>Agosto 2012 </B>" );
	}
if (month==9){ 
	document.write(" Appuntamenti di:<BR> <B>Settembre 2012 </B>" );
	}
if (month==10){ 
	document.write(" Appuntamenti di:<BR> <B>Ottobre 2012</B>" );
	}
if (month==11){ 
	document.write("  Appuntamenti di:<BR> <B>Novembre 2012 </B>" );
	}
if (month==12){ 
	document.write("  Appuntamenti di:<BR>  <U>Dicembre 2011 </U>" );
	}

