// ABRIR JANELA - 15/12/2003
// VARIÁVEIS: url, width, height, menu, scroll, stat, tool, left, top, redir
function AbrirJanela(url, larg, alt, menu, rolagem, stat, ferram, esq, top, redir) {
	var popUp=0;
	if(popUp) {
		if(!popUp.closed) popUp.close();
	}
	popUp = window.open(url,'new_popup','height='+alt+',width='+larg+',menubar='+menu+',scrollbars='+rolagem+',status='+stat+',toolbar='+ferram+',left='+esq+',top='+top);
	popUp.focus();
	window.parent.location=redir;
}
