function quadro(nome_imagem,titulo,descricao) {
  PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=640,height=480");
  PreView.document.open();
  PreView.document.write("<html><head><title>" + titulo + "</title>");
  PreView.document.write("<style>");
  PreView.document.write("BODY       {background-color: gray;");
  PreView.document.write("            color: white;");
  PreView.document.write("            font-weight: bold;");
  PreView.document.write("            font-size: 11pt;");
  PreView.document.write("            font-family: Tahoma, Verdana, Arial, sans-serif;");
  PreView.document.write("            font-style: normal;");
  PreView.document.write("            text-decoration: none;");
  PreView.document.write("            text-transform: none;");
  PreView.document.write("            text-align: left;");
  PreView.document.write("            margin: 0px 5px 15px 10px;");
  PreView.document.write("           }");
  PreView.document.write(".imagem    {margin: 0;");
  PreView.document.write("            text-align: center;");
  PreView.document.write("            width: 80%;");
  PreView.document.write("            border: solid 7px white;");
  PreView.document.write("           }");
  PreView.document.write(".legenda   {width: 100%;");
  PreView.document.write("            margin-left: 0px;");
  PreView.document.write("            margin-top: 0px;");
  PreView.document.write("            margin-bottom: 0px;");
  PreView.document.write("           }");
  PreView.document.write("</style>");
  PreView.document.write("</head>");
  PreView.document.write("<body><center><br>");
  PreView.document.write("<IMG class=imagem SRC='" + nome_imagem + "'>");
  PreView.document.write("<br><br><p class=legenda>" + descricao + "</p>");
  PreView.document.write("</center></body></html>");
  PreView.document.close();
}

