﻿function ChangeImageTo(src) {
    var container = document.getElementById("goods-detailed-image");
    if (container == null)
        container = document.getElementById("tag-description3-image");
    var imgs = container.getElementsByTagName("img");
    if (imgs.length > 0) {
        imgs[0].src = src;
    }
    return false;
}
function ASPID(ctl, id) {
    if (ctl.indexOf('_') != -1) {
        return ctl + '_' + id;
    }
    else {
        return ctl + '_' + id;
    }
}
