
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] = "january";
months[1] = "february";
months[2] = "march";
months[3] = "april";
months[4] = "may";
months[5] = "june";
months[6] = "july";
months[7] = "august";
months[8] = "september";
months[9] = "october";
months[10] = "november";
months[11] = "december";

today = null;


document.write ('<p class="pie"><a href="index.html">Restorations center Nino Contavalli</a><br>Web developed by <br><a href="http://www.osmosis.com.pe" target="_blank">Osmosis Comunicación & Educación</a><br>Lima (Peru), ' + months[month] + ' ' + year + '</p>')
