function GM_Altera_Foto(vFotomaior,vLegenda){
  document.getElementById('foto_maior').src = vFotomaior;
  document.getElementById('legendaprods').innerHTML = vLegenda;
  location.href="#";
}

function GM_Altera_Foto_Midia(vFotomaior,vLegenda,vID,vOrientacao){
  if (vOrientacao == 0) {
    //VERTICAL
    //Mascara flash
    document.getElementById('vertical').style.display = "block";
    document.getElementById('horizontal').style.display = "none";
    //Imagem
    document.getElementById('foto_maior').style.marginLeft = "273px";
	document.getElementById('foto_maior').style.marginTop = "20px";
    //Frase
    document.getElementById('legendaprods').style.marginLeft = "270px";
    document.getElementById('legendaprods').style.marginTop = "355px";
    document.getElementById('legendaprods').style.width = "275px";
    //Fundo Trasnparente
    document.getElementById('fundo_frase').style.marginLeft = "273px";
    document.getElementById('fundo_frase').style.marginTop = "340px";
    document.getElementById('fundo_frase').style.width = "280px";
    document.getElementById('fundo_frase').style.height = "50px";
  } else {
    //HORIZONTAL
    //Mascara flash
    document.getElementById('vertical').style.display = "none";
    document.getElementById('horizontal').style.display = "block";
    //Imagem
    document.getElementById('foto_maior').style.marginLeft = "147px";
    //Frase
    document.getElementById('legendaprods').style.marginLeft = "145px";
    document.getElementById('legendaprods').style.marginTop = "360px";
    document.getElementById('legendaprods').style.width = "506px";
    //Fundo Trasnparente
    document.getElementById('fundo_frase').style.marginLeft = "145px";
    document.getElementById('fundo_frase').style.marginTop = "350px";
    document.getElementById('fundo_frase').style.width = "506px";
    document.getElementById('fundo_frase').style.height = "50px";
    
  }
  document.getElementById('foto_maior').src = vFotomaior;
  document.getElementById('legendaprods').innerHTML = vLegenda;
  ValorOLD = document.getElementById('ValueID').value;
  if(document.getElementById('DivGal'+ValorOLD)){
    document.getElementById('DivGal'+ValorOLD).style.display = 'none';
  }
  document.getElementById('ValueID').value = vID;
  if(document.getElementById('DivGal'+vID)){
    document.getElementById('DivGal'+vID).style.display = 'block';
  }
  location.href="#";
}