
var months = new Array(11);

var today = new Date();
var month = today.getMonth();
var year = today.getYear();
if (year <= 99){
year = year + 1900;
}

months[0] = "gennaio";
months[1] = "febbraio";
months[2] = "marzo";
months[3] = "aprile";
months[4] = "maggio";
months[5] = "giugno";
months[6] = "luglio";
months[7] = "agosto";
months[8] = "settembre";
months[9] = "ottobre";
months[10] = "novembre";
months[11] = "dicembre";

today = null;


document.write ('<p class="pie"><a href="index.html">Centro dei ripristini Nino Contavalli</a><br>Fotoricettore sviluppato da<br><a href="http://www.osmosis.com.pe" target="_blank">Osmosis Comunicación & Educación</a><br>Lima (Perů), ' + months[month] + ' ' + year + '</p>')
