// JavaScript Document

function mudarFoto(foto) {

document.getElementById('fotoGrande1').innerHTML	= "<img  src='arquivos/produtos/g_"+foto+"'  style='cursor:pointer;' />"
document.getElementById('fotoGrande2').value 		= foto;

}



function zoom() {

var imagem = document.getElementById('fotoGrande2').value;
window.open('zoom.php?imagem='+imagem, 'zoom', 'width=640, height=480');

}
