[go: up one dir, main page]

Menu

[r3]: / data.js  Maximize  Restore  History

Download this file

9 lines (7 with data), 448 Bytes

1
2
3
4
5
6
7
8
// JavaScript Document
//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
//--------------- END LOCALIZEABLE ---------------