function mostra(arq, x, y)
{
janela = window.open("","Foto",", top=0, left=0, toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width="+x+",height="+y);
janela.document.open();
janela.document.write("<HTML><HEAD>");
janela.document.write("<TITLE>S&atilde;o Bento do Una - &Aacute;lbum de Fotos</TITLE>");
janela.document.write("</HEAD><BODY BGCOLOR=#ffffff topmargin=5 marginheight=5 leftmargin=0 marginwidth=0>");
janela.document.write("<center>");
janela.document.write("<IMG SRC='"+arq+"' border=1><br>");
janela.document.write("<input type='button' value='Fechar' onClick='window.close();'>");
janela.document.write("</CENTER>");
janela.document.write("</FONT>");
janela.document.write("</BODY></HTML>");
janela.document.close();
}

function MM_openBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}

function Abrir(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}