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