
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] = "enero";
months[1] = "febrero";
months[2] = "marzo";
months[3] = "abril";
months[4] = "mayo";
months[5] = "junio";
months[6] = "julio";
months[7] = "agosto";
months[8] = "septiembre";
months[9] = "octubre";
months[10] = "noviembre";
months[11] = "diciembre";

today = null;


document.write ('<p class="pie"><a href="index.html">Centro de Restauraciones Nino Contavalli</a><br>Web desarrollada por<br><a href="http://www.osmosis.com.pe" target="_blank">Osmosis Comunicación & Educación</a><br>Lima (Perú), ' + months[month] + ' del ' + year + '</p>')
