//MOSTRA FOTO GRANDE

// fotos da galeria 
function mostra_foto(nome_foto, id, legenda, endereco)
{
		dados =endereco+"/produto/"+id+"/"+nome_foto;
		document.getElementById("ImgBig").src=dados;
		document.getElementById("legenda").innerHTML=legenda;
}

// fotos da produto
function mostra_foto_produto(nome_foto, id, legenda, endereco)
{
		dados =endereco+"/produto/"+id+"/"+nome_foto;
		document.getElementById("big_foto").src=dados;
		document.getElementById("big_fotoG").src=dados;		
		document.getElementById("legenda").innerHTML=legenda;
}

function verifica() {
var email=document.formulario.email.value;
var telefone=document.formulario.telefone.value;
if ((email=="") || (telefone == ""))
{
	alert("Digite o E-mail e Telefone!");
	document.formulario.email.focus();
	return false;
}else{
	document.formulario.submit();
}
}

