var janela;

function popUpFlash(arqFoto) {
	w = 680;
	h = 550;

	htm = arqFoto;

	leftP = (screen.width) ? (screen.width-w)/2  : 0;
	topP = (screen.height) ? (screen.height-h)/2 : 0;
	parametros = "height="+h+",width="+w+",top="+topP+",left="+leftP;

	if (!janela || janela.closed) {
		janela = window.open(htm,"janela",parametros);
	} else {
		janela.close();
		janela = window.open(htm,"janela",parametros);
	}
	janela.focus();
}


function popUpVisita(arqFoto) {
	w = 360;
	h = 325;

	htm = arqFoto;

	leftP = (screen.width) ? (screen.width-w)/2  : 0;
	topP = (screen.height) ? (screen.height-h)/2 : 0;
	parametros = "height="+h+",width="+w+",top="+topP+",left="+leftP;

	if (!janela || janela.closed) {
		janela = window.open(htm,"visita",parametros);
	} else {
		janela.close();
		janela = window.open(htm,"visita",parametros);
	}
	janela.focus();
}




