function get_pub(id) {
    var aq163w12 = new AJAX(true);
    var url = "products.php?action=get_pub&id=" + id
    aq163w12.callPage(base + "http/" + url, get_pubR);
}

function get_pubR(rPage, rAction, rText) {
    var p = document.getElementById("pub_info");
    if (p) p.innerHTML = rText;
}
var pre_img = new Image();
pre_img.src = "gfx/11-0.gif";
function set_image(path,src) {
    var img = document.getElementById("product_img");
    if (img) {
        img.parentNode.onclick = function() { msg.show_img(path + "5/" + src);  return false;}
        img.src=pre_img.src;
        var tmp_img = new Image();
        tmp_img.src = path + '4/' + src;
        img.src = tmp_img.src;
    }
}

