function abreFoto(codigo,grupo,sitemap,altura,lingua)
//sitemap: endereço no mapa do site (4 dígitos):
// 1º díg: divisão (1-sonorização, 2-projetos, 3-gravações)
// 2º díg: pg_interna (1-história, 2-créditos....)
// 3º e 4º díg: sub_divisão (1-exposições, 2-coorporativos...)
{
if (altura == '') altura = 510
esq  = (window.screen.width - 600) / 2
cima = (window.screen.height - altura) / 2

endereco = "../pag_fotos/pag_foto.asp?lingua="+lingua+"&cod="+codigo+"&grupo="+grupo+"&sitemap="+sitemap;
nomepopup = "pag_foto";
var pagfoto = window.open(endereco,nomepopup,"left=" + esq + ",top=" + cima + ",width=600,height=1,scrollbars=yes");
pagfoto.resizeTo("600",altura);
}


function janelanimada(endereco,nomepopup,largura,altura) {

var velocidadev = 2;
var velocidadeh = 3;
var topo = 50;
var esquerda = 50;

if (document.all) {
	var tamlar = largura;
	var tamjan = altura;
	var tamanho = window.open("",nomepopup,"left=" + esquerda + ",top=" + topo + ",width=1,height=1,scrollbars=no");
	for (sizeheight = 1; sizeheight <= tamjan; sizeheight += velocidadev) {
	tamanho.resizeTo("1",sizeheight );}
	for (sizewidth = 1; sizewidth <= tamlar; sizewidth += velocidadeh) {
	tamanho.resizeTo(sizewidth+11,sizeheight+28);}
	tamanho.location = endereco;}
else
	window.location = endereco;}