function OnAbrirJanelaCentralizada(url,largura,altura) {
	window.open(url,'PaginaWebCentralizada','scrollbars=yes,status=no,toolbar=no,dependent=yes,height=' + altura + ',width=' + largura + ',left=' + ((screen.width - largura) / 2) +  ',top=' +  ((screen.height - altura) / 2));
}
function OnAbrirJanelaCantoSuperior(url,largura,altura) {
	window.open(url,'PaginaWebCantoSuperior','scrollbars=yes,status=no,toolbar=no,dependent=yes,height=' + altura + ',width=' + largura + ',left=' + ((screen.width - largura) - 10) +  ',top=0');
}
function OnRedirecionarPagina(url) {
	window.location.href = url;
}
function OnFecharJanela() {
	window.close();
}
function OnImprimirConteudo() {
	self.print();
}
function OnRecarregarJanelaOrigem() {
	window.opener.location.reload();
}
