// Today's Date
var now = new Date();
var mName = now.getMonth() + 1;
var dayNr = now.getDate();
var yearNr=now.getYear();
if(mName==1) Month = "janeiro";
if(mName==2) Month = "fevereiro";
if(mName==3) Month = "março";
if(mName==4) Month = "abril";
if(mName==5) Month = "maio";
if(mName==6) Month = "junho";
if(mName==7) Month = "julho";
if(mName==8) Month = "agosto";
if(mName==9) Month = "setembro";
if(mName==10) Month = "outubro";
if(mName==11) Month = "novembro";
if(mName==12) Month = "dezembro";
if(yearNr < 2000) Year = 1900 + yearNr;
else Year = yearNr;
// String to display current date.
var todaysDate =("Macaé, " + dayNr + " de " + Month + " de " + Year);

function abreSistema(){
	if(screen.width<1000){
		alert('Sua resolução pode causar descoforto devido ao pequeno campo de visão.\nPara melhor vizualização ajuste sua resolução para 1024 X 768.\nDúvidas chame um técnico de informática. Obrigado.');
	}
	window.open('http://www.castelo.com.br/adm/','Castelo','fullscreen=yes, scrollbars=no');
}