var SmallWin;

function exp (imagem, w, h, n) { 
foto =  imagem + '.jpg';
texto = "<img src=" + foto + ">";
com = "toolbar=no,directories=no,status=no,scrollbars=no,menubar=no,left=215,top=50, width="
+ w + ",height=" + h;

if (SmallWin && !SmallWin.closed)
   {SmallWin.close();}
SmallWin=window.open('','SmallWin', com ); 
SmallWin.document.write('<html>');
SmallWin.document.write('<title>Fotos do CTG 20 de Setembro</title>');
SmallWin.document.write('<body leftmargin="0" bgcolor=#B0FFB0 topmargin="0" marginwidth="0" marginheight="0">');
SmallWin.document.write('<DIV align=center>');
SmallWin.document.write(texto);
SmallWin.document.write('<BR><font face="arial" size="2">' + n);
SmallWin.document.write('</body>');
SmallWin.document.write("</html>");
SmallWin.document.close();
SmallWin.window.focus() } 

