var janela, w, h, arqFoto, conteudo, leftP, topP, parametros, style;

function abrefoto(w,h,arqFoto) {
	conteudo = "";
	
	if(!document.all) {
		style = "<style type='text/css'>body {overflow:auto;}</style>";
	} else {
		style = "";
	}
	conteudo += "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>";
	conteudo += "<html xmlns='http://www.w3.org/1999/xhtml'>";
	conteudo += "<head>";
	conteudo += "<title>:: Reunião Equatorial de Antropologia - X Reunião de Antropólogos Norte-Nordeste ::</title>";
	conteudo += "<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>";
	conteudo += style;
	conteudo += "</head>";
	conteudo += "<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' scroll='no'>";
	conteudo += "<div style='overflow:auto;height:"+h+"px;width:"+w+"px'>";
	conteudo += "<a href='javascript:window.close()'><img src='"+arqFoto+"' name='foto' alt='' border='0'></a>";
	conteudo += "</div>";
	conteudo += "</body>";
	conteudo += "</html>";
	
	//-----------------------------------------------------------
	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("","janela",parametros);
	} else {
		janela.close();
		janela = window.open("","janela",parametros);
	}
	//----------------------------------------------------------------
	janela.document.write(conteudo);
	janela.focus();
}