﻿// JScript File
function OnclickImagemPromocoes(id, img, largura, altura)
{
    html = "<img src='../servico/Thumbnail.aspx?file=../upload/imagem/" + img + "&alt=" + altura + "&lar=" + largura + "' />"
    txtImg = "#txtImg" + id;
    $("#imgDetalheGaleria").html(html , true);
    $("#descricaoImagem").html($(txtImg).text(), true);
}

function OnclickVideo(id)
{
    video = "#videoGaleria" + id;
    txtImg = "#txtImg" + id;
    $("#videoGaleria").html($(video).html(), true);
    $("#descricaoImagem").html($(txtImg).text(), true);
}
