function initArray()
{this.length = initArray.arguments.length
for (var i = 0;i < this.length;i++)
this[i+1] = initArray.arguments[i]
}
var DOWArray = new initArray("domingo","lunes","martes","mircoles","jueves","viernes","s&aacute;bado");
MOYArray = new initArray("enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre");
LastModDate = new Date(document.lastModified);
document.write("Actualizado el ");
document.write(DOWArray[(LastModDate.getDay()+1)]," ");
document.write(LastModDate.getDate()," de ");
document.write(MOYArray[(LastModDate.getMonth()+1)]," de 2010");
