Download this file
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 ---------------