function tamanhoFlash(largura, altura, obj)
{
	document[obj].height = altura;
	document[obj].width = largura;
}

function abrirJanela(url,largura,altura)
{
	var e = (screen.width - largura) /2;
	var t = (screen.height - altura) / 2;
	var janela = window.open(url, "pop"+ e+"x"+t, 'scrollbars=1,width=' + largura + ',height='+ altura +',top='+ t +',left='+ e)
	janela.focus();
}

function abrir_termos() {
	window.open('termos_docemenor.html','termos_dm','width=565,height=500,top='+(window.screen.height/2-565/2)+',left='+(window.screen.width/2-500/2)+',scrollbars=yes,toolbar=no,menubar=no,status=no,location=no,resizable=no');
}
