function rollover(img , src)
{

document.getElementById(img).src = src;

}

function amplia_foto(foto, area, cores, peso, altura)
{

bigWindow = window.open("", foto, 'toolbar=no,menubar=no,resizable=no, status=no,scrollbar=no, toolbar=no, width=440,height=410');
bigWindow.document.write('<html><head><title>' + foto +'</title>' );
bigWindow.document.write('<link rel="stylesheet" type="text/css" href="fotos.css" /></head><body> <div id="foto_prod">'  );
bigWindow.document.write('<a href="javascript:close()">');
bigWindow.document.write('<img src="prod/'+ area + '/' + foto + '.jpg" />');
bigWindow.document.write('</a>');
bigWindow.document.write('<p>' + cores + '</p>');
if(peso > 0)
bigWindow.document.write('<p>Peso aprox.: ' + peso + ' grs.</p>');
if(altura > 0)
bigWindow.document.write('<p>Altura aprox.: ' + altura + ' cm.</p>');
bigWindow.document.write('</div></body></html>');
bigWindow.document.close();
}

function botao_over(botao,over)
{

  if(over)
  {
    botao.style.color = "#fff";
    botao.style.backgroundColor = "#784D36";
  }
  else
  {
    botao.style.color = "#fffcb8";
    botao.style.backgroundColor = "#B49562";
  }
}

