function addproduto2(codprod,codcat) {

  document.produto.codigo_produto.value = codprod;
  document.produto.codigo_categoria.value = codcat;

  var nome_tamanho = document.getElementsByName("nome_tamanho");
  for (counter = 0; counter < nome_tamanho.length; counter++) {
    if (nome_tamanho[counter].checked == true) {
        document.produto.codigo_tamanho.value = nome_tamanho[counter].value;
    }
  }

  var nome_cor = document.getElementsByName("nome_cor");
  for (counter = 0; counter < nome_cor.length; counter++) {
    if (nome_cor[counter].checked == true) {
        document.produto.codigo_cor.value = nome_cor[counter].value;
    }
  }

  document.produto.submit();
}

function view_prod(view_img) {
    document.IMGVisProd.src = view_img;
}
function view_prod2(view_img) {
    document.IMGVisProd2.src = view_img;
}
function view_prod3(view_img) {
    document.IMGVisProd3.src = view_img;
}
function view_prod4(view_img) {
    document.IMGVisProd4.src = view_img;
}
function view_prod5(view_img) {
    document.IMGVisProd5.src = view_img;
}
