function display(id) {
    var d = document.getElementById(id);
    var box = document.getElementById("box_" + id);
    var img = new Image();
    if (d) {
        if (d.style.display==='none') {
            img.src = "./minus.png";
            aff='block';
            box.style.width="400px";
        }
        else {
            img.src = "./plus.png";
            aff='none';
            box.style.width="100%";
        }
    }
    
    if (d) {
        d.style.display=aff;
        eval("document.images['image_" + id + "'].src = img.src");
    }
}