<!-- // inizio JavaScript Calendario 08)
<!-- // la seguente parte (<style> ... </style>)  da mettere nella parte <head> ... </head> del documento .html -->
<style type="text/css">
	body {background: white; font: 14px verdana, arial sans-serif;}
	h1 {color: gray;}
	p {background: white; font: 12px Verdana, arial, sans-serif;}
	table {font:11px verdana arial; width: 180px; background: #eeffee;}
</style>
		<!-- // la seguente parte (fino in fondo)  da mettere nella parte <body> ... </body> del documento .html: al posto dove deve apparire il link per il calendario. -->
<div>
	<h1><font face="Verdana" size="4"> Calendario 2008 </font></h1>
	<script language="javascript"><!--// fill the month table with column headingsfunction day_title(day_name){     document.write("<TD ALIGN=center WIDTH=35 BGCOLOR=#ddffdd>"+day_name+"</TD>")}// fills the month table with numbersfunction fill_table(month,month_length){   day=1  // begin the new month table  document.write("<TABLE BORDER=2 CELLSPACING=2 CELLPADDING=%3><TR>")  document.write("<TD COLSPAN=7 ALIGN=center BGCOLOR=#ccffcc><B>"+month+"   "+year+"</B><TR>")  // column headings  day_title("Lun")  day_title("Mar")  day_title("Mer")  day_title("Gio")  day_title("Ven")  day_title("Sab")  day_title("Dom")  // pad cells before first day of month  document.write("</TR><TR>")  for (var i=1;i<start_day;i++){        document.write("<TD>")  }  // fill the first week of days  for (var i=start_day;i<8;i++){        document.write("<TD ALIGN=center>"+day+"</TD>")        day++  }  document.write("<TR>")  // fill the remaining weeks  while (day <= month_length) {     for (var i=1;i<=7 && day<=month_length;i++){         document.write("<TD ALIGN=center>"+day+"</TD>")         day++     }     document.write("</TR><TR>")     // the first day of the next month     start_day=i  }  document.write("</TR></TABLE><BR>")}// end hiding -->
	</script>
	<script language="javascript">
		// CHANGE the below variable to the CURRENT YEAR
		year=2008
		// first day of the week of the new year
		today= new Date("January 1, "+year)
		start_day = today.getDay() + 1   // starts with 0
		fill_table("Gennaio",31)
		fill_table("Febbraio",28)
		fill_table("Marzo",31)
		fill_table("Aprile",30)
		fill_table("Maggio",31)
		fill_table("Giugno",30)
		fill_table("Luglio",31)
		fill_table("Agosto",31)
		fill_table("Settembre",30)
		fill_table("Ottobre",31)
		fill_table("Novembre",30)
		fill_table("Dicembre",31)
	</script>
	<p><font face="arial" size="-2">This free script provided by</font><br>
	<font face="arial, helvetica" size="-2"><a href="http://javascriptkit.com">JavaScript Kit
		</a>
	</font>
</div><!-- // Fine JavaScript Calendario 08) -->
