
function abreJanela(url, width, height) {
     var top = (screen.height - height) / 2;
     var left = (screen.width - width) / 2;
     var properties = "height=" + height + ", width=" + width + ", resizable=0, status=0, toolbar=0, top=" + top + ", left=" + left;
     window.open(url,'', properties);
}

function getSystemDate(lang) {
    hoje = new Date()
    dia = hoje.getDate()
    dias = hoje.getDay()
    mes = hoje.getMonth()
    ano = hoje.getFullYear()
  
    if (lang == 'pt') {
	     nomeMes = new Array("Janeiro", "Fevereiro", "Mar&#231;o", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro",  "Novembro", "Dezembro");       
	}
	else {
		nomeMes = new Array("January", "Fevereiro", "March", "April", "May", "June", "July", "August", "September", "October",  "November", "December");
	}
	document.write(dia + " " + nomeMes[mes] + " " + ano);
}


function trim(str) {
   return str.replace(/^\s+|\s+$/g, "");
}
