// JavaScript Document

hoje = new Date()

ano = hoje.getFullYear()


	function popIT(pagina, largura, altura) {
	   var esquerda = (screen.width - largura)/2;
	   var topo = (screen.height - altura)/2;
	   window.open(pagina,'','height=' + altura + ', width=' + largura + ', top=' + topo + ', left=' + esquerda + ',status=YES'); }
