function MostraImagem (Cor1, Cor2, Pontos, Imagem, Largura, Altura, Link)
{
if (Link==null) {
    Link="";
    }	
document.write ("<table border='0' cellpadding='0' cellspacing='0'>");
/* Linha 1 */
document.write ("<tr><td colspan='3' height='" + Pontos + "' bgcolor='" + Cor1 + "'></td></tr>");
/* Linha 2 */
document.write ("<tr>");
document.write ("<td width='" + Pontos + "' bgcolor='" + Cor1 + "'></td>");
/***/
if (Link=="") {
     document.write ("<td width='" + Largura + "'>");
     document.write ("<img src='" + Imagem + "' border='0' width='" + Largura + "' height='" + Altura + "'>");
     document.write ("</td>");
	 }
else {
     document.write ("<td width='" + Largura + "'><A href='" + Link + "'>");
     document.write ("<img src='" + Imagem + "' border='0' width='" + Largura + "' height='" + Altura + "'>");
     document.write ("</A></td>");
     }
/***/
document.write ("<td width='" + Pontos + "' bgcolor='" + Cor2 + "'></td>");
document.write ("</tr>");
/* Linha 3 */
document.write ("<tr><td colspan='3' height='" + Pontos + "' bgcolor='" + Cor2 + "'></td></tr>");
document.write ("</table>");
}