var janela, w, h, arqFoto, conteudo, leftP, topP, parametros, style;

function abrefoto(w,h,arqFoto) {
	conteudo = "";
	
	if(!document.all) {
		w += 3;
		h += 0;
		style = "<style type='text/css'>body {overflow: hidden;}</style>";
	} else {
		style = "";
	}
	conteudo += "<html>";
	conteudo += "<head>";
	conteudo += "<title>:: Lojão Ferseg :: Ferramentas e Segurança :::::::::::::::::::::::::::::::::::::::::::::::::::::::</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 += "<table width='100%' height='100%'  border='0' cellpadding='0' cellspacing='0'>";
	conteudo += "<tr><td align='center' valign='middle'>";
	conteudo += "<a href='javascript:window.close()'><img src='"+arqFoto+"' name='foto' alt='' border='0'></a>";
	conteudo += "</tr></td>";
	conteudo += "</table>";
	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();
}