<!--

var poFoto;

function exibirFoto(asNomeFoto) { //v2.0
  if (!poFoto || poFoto.closed) {
  	poFoto = window.open("Fotos/Foto." + asNomeFoto + ".htm", "Foto", "width=202,height=402	,top=75,left=115");
  } else {
	poFoto.document.location.href = "Fotos/Foto." + asNomeFoto + ".htm";
  	poFoto.focus();
  }
}

//-->